| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 "//content/public/android:content_junit_tests", | 277 "//content/public/android:content_junit_tests", |
| 278 "//content/shell/android:content_shell_apk", | 278 "//content/shell/android:content_shell_apk", |
| 279 "//content/test:video_decode_accelerator_unittest", | 279 "//content/test:video_decode_accelerator_unittest", |
| 280 "//net/android:net_junit_tests", | 280 "//net/android:net_junit_tests", |
| 281 "//testing/android/junit:junit_unittests", | 281 "//testing/android/junit:junit_unittests", |
| 282 "//third_party/android_tools:uiautomator_java", | 282 "//third_party/android_tools:uiautomator_java", |
| 283 "//third_party/errorprone:chromium_errorprone", | 283 "//third_party/errorprone:chromium_errorprone", |
| 284 "//third_party/smhasher:murmurhash3", | 284 "//third_party/smhasher:murmurhash3", |
| 285 "//tools/android:android_tools", | 285 "//tools/android:android_tools", |
| 286 "//tools/android:memconsumer", | 286 "//tools/android:memconsumer", |
| 287 "//tools/android:push_apps_to_background", |
| 287 "//tools/android/heap_profiler:heap_profiler_unittests", | 288 "//tools/android/heap_profiler:heap_profiler_unittests", |
| 288 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", | 289 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", |
| 289 "//tools/cygprofile:cygprofile_unittests", | 290 "//tools/cygprofile:cygprofile_unittests", |
| 290 "//tools/imagediff($host_toolchain)", | 291 "//tools/imagediff($host_toolchain)", |
| 291 "//ui/android:ui_junit_tests", | 292 "//ui/android:ui_junit_tests", |
| 292 ] | 293 ] |
| 293 deps -= [ | 294 deps -= [ |
| 294 "//net:net_perftests", | 295 "//net:net_perftests", |
| 295 "//url:url_unittests", | 296 "//url:url_unittests", |
| 296 ] | 297 ] |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 assert(target_name != "") # Mark as used. | 900 assert(target_name != "") # Mark as used. |
| 900 sources = invoker.actual_sources | 901 sources = invoker.actual_sources |
| 901 assert( | 902 assert( |
| 902 sources == invoker.actual_sources, | 903 sources == invoker.actual_sources, |
| 903 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 904 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 904 } | 905 } |
| 905 | 906 |
| 906 assert_valid_out_dir("_unused") { | 907 assert_valid_out_dir("_unused") { |
| 907 actual_sources = [ "$root_build_dir/foo" ] | 908 actual_sources = [ "$root_build_dir/foo" ] |
| 908 } | 909 } |
| OLD | NEW |