Chromium Code Reviews| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 257 "//base/android/linker:chromium_android_linker", | 257 "//base/android/linker:chromium_android_linker", |
| 258 "//build/android/gyp/test:hello_world", | 258 "//build/android/gyp/test:hello_world", |
| 259 "//chrome/android/webapk/shell_apk:webapk", | 259 "//chrome/android/webapk/shell_apk:webapk", |
| 260 "//components/invalidation/impl:components_invalidation_impl_junit_tests", | 260 "//components/invalidation/impl:components_invalidation_impl_junit_tests", |
| 261 "//components/policy/android:components_policy_junit_tests", | 261 "//components/policy/android:components_policy_junit_tests", |
| 262 "//content/public/android:content_junit_tests", | 262 "//content/public/android:content_junit_tests", |
| 263 "//content/shell/android:content_shell_apk", | 263 "//content/shell/android:content_shell_apk", |
| 264 "//device:device_junit_tests", | 264 "//device:device_junit_tests", |
| 265 "//media/gpu:video_decode_accelerator_unittest", | 265 "//media/gpu:video_decode_accelerator_unittest", |
| 266 "//net/android:net_junit_tests", | 266 "//net/android:net_junit_tests", |
| 267 "//services:services_junit_tests", | |
|
blundell
2017/05/10 14:51:57
nit: this should be service_junit_tests to match s
| |
| 267 "//testing/android/junit:junit_unit_tests", | 268 "//testing/android/junit:junit_unit_tests", |
| 268 "//third_party/android_async_task:android_async_task_java", | 269 "//third_party/android_async_task:android_async_task_java", |
| 269 "//third_party/errorprone:chromium_errorprone", | 270 "//third_party/errorprone:chromium_errorprone", |
| 270 "//third_party/smhasher:murmurhash3", | 271 "//third_party/smhasher:murmurhash3", |
| 271 "//tools/android:android_tools", | 272 "//tools/android:android_tools", |
| 272 "//tools/android:memconsumer", | 273 "//tools/android:memconsumer", |
| 273 "//tools/android:push_apps_to_background", | 274 "//tools/android:push_apps_to_background", |
| 274 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk", | 275 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk", |
| 275 "//tools/android/customtabs_benchmark:customtabs_benchmark_apk", | 276 "//tools/android/customtabs_benchmark:customtabs_benchmark_apk", |
| 276 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", | 277 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1076 assert(target_name != "") # Mark as used. | 1077 assert(target_name != "") # Mark as used. |
| 1077 sources = invoker.actual_sources | 1078 sources = invoker.actual_sources |
| 1078 assert( | 1079 assert( |
| 1079 sources == invoker.actual_sources, | 1080 sources == invoker.actual_sources, |
| 1080 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") | 1081 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") |
| 1081 } | 1082 } |
| 1082 | 1083 |
| 1083 assert_valid_out_dir("_unused") { | 1084 assert_valid_out_dir("_unused") { |
| 1084 actual_sources = [ "$root_build_dir/foo" ] | 1085 actual_sources = [ "$root_build_dir/foo" ] |
| 1085 } | 1086 } |
| OLD | NEW |