OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
10 | 10 |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 if (is_mac) { | 266 if (is_mac) { |
267 deps += [ "//chrome/installer/gcapi_mac:gcapi_example" ] | 267 deps += [ "//chrome/installer/gcapi_mac:gcapi_example" ] |
268 } | 268 } |
269 | 269 |
270 if (is_android) { | 270 if (is_android) { |
271 deps += [ | 271 deps += [ |
272 "//base:base_junit_tests", | 272 "//base:base_junit_tests", |
273 "//base/android/linker:chromium_android_linker", | 273 "//base/android/linker:chromium_android_linker", |
274 "//build/android/gyp/test:hello_world", | 274 "//build/android/gyp/test:hello_world", |
275 "//build/android/gyp/test:hello_world", | 275 "//build/android/gyp/test:hello_world", |
| 276 "//build/android/stacktrace:java_deobfuscate", |
276 "//chrome/android/webapk/shell_apk:webapk", | 277 "//chrome/android/webapk/shell_apk:webapk", |
277 "//chrome/test/vr/perf:motopho_latency_test", | 278 "//chrome/test/vr/perf:motopho_latency_test", |
278 "//components/invalidation/impl:components_invalidation_impl_junit_tests", | 279 "//components/invalidation/impl:components_invalidation_impl_junit_tests", |
279 "//components/policy/android:components_policy_junit_tests", | 280 "//components/policy/android:components_policy_junit_tests", |
280 "//content/public/android:content_junit_tests", | 281 "//content/public/android:content_junit_tests", |
281 "//content/shell/android:content_shell_apk", | 282 "//content/shell/android:content_shell_apk", |
282 "//device:device_junit_tests", | 283 "//device:device_junit_tests", |
283 "//media/gpu:video_decode_accelerator_unittest", | 284 "//media/gpu:video_decode_accelerator_unittest", |
284 "//net/android:net_junit_tests", | 285 "//net/android:net_junit_tests", |
285 "//services:service_junit_tests", | 286 "//services:service_junit_tests", |
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 assert(target_name != "") # Mark as used. | 1074 assert(target_name != "") # Mark as used. |
1074 sources = invoker.actual_sources | 1075 sources = invoker.actual_sources |
1075 assert( | 1076 assert( |
1076 sources == invoker.actual_sources, | 1077 sources == invoker.actual_sources, |
1077 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1078 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1078 } | 1079 } |
1079 | 1080 |
1080 assert_valid_out_dir("_unused") { | 1081 assert_valid_out_dir("_unused") { |
1081 actual_sources = [ "$root_build_dir/foo" ] | 1082 actual_sources = [ "$root_build_dir/foo" ] |
1082 } | 1083 } |
OLD | NEW |