Upload upstream chromium 120.0.6099.5
[platform/framework/web/chromium-efl.git] / codelabs / BUILD.gn
1 # Copyright 2020 The Chromium Authors
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 group("codelabs") {
6   testonly = true
7   deps = [
8     "//codelabs/cpp101:codelab_cpp101",
9     "//codelabs/threading_and_scheduling:codelab_threading_and_scheduling",
10   ]
11
12   # These examples rely on base::LaunchOptions which do not exist in the iOS
13   # simulator.
14   if (!is_ios) {
15     deps += [ "//codelabs/mojo_examples:codelab_mojo_examples" ]
16   }
17 }