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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 "//net/android:net_junit_tests", | 369 "//net/android:net_junit_tests", |
370 "//testing/android/junit:junit_unit_tests", | 370 "//testing/android/junit:junit_unit_tests", |
371 "//third_party/android_async_task:android_async_task_java", | 371 "//third_party/android_async_task:android_async_task_java", |
372 "//third_party/errorprone:chromium_errorprone", | 372 "//third_party/errorprone:chromium_errorprone", |
373 "//third_party/smhasher:murmurhash3", | 373 "//third_party/smhasher:murmurhash3", |
374 "//tools/android:android_tools", | 374 "//tools/android:android_tools", |
375 "//tools/android:memconsumer", | 375 "//tools/android:memconsumer", |
376 "//tools/android:push_apps_to_background", | 376 "//tools/android:push_apps_to_background", |
377 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk", | 377 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk", |
378 "//tools/android/customtabs_benchmark:customtabs_benchmark_apk", | 378 "//tools/android/customtabs_benchmark:customtabs_benchmark_apk", |
379 "//tools/android/heap_profiler:heap_profiler_unittests", | |
380 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", | 379 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", |
381 "//tools/cygprofile:cygprofile_unittests", | 380 "//tools/cygprofile:cygprofile_unittests", |
382 "//ui/android:ui_junit_tests", | 381 "//ui/android:ui_junit_tests", |
383 ] | 382 ] |
384 deps -= [ | 383 deps -= [ |
385 "//net:net_perftests", | 384 "//net:net_perftests", |
386 "//url:url_unittests", | 385 "//url:url_unittests", |
387 ] | 386 ] |
388 | 387 |
389 if (!is_component_build) { | 388 if (!is_component_build) { |
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1043 assert(target_name != "") # Mark as used. | 1042 assert(target_name != "") # Mark as used. |
1044 sources = invoker.actual_sources | 1043 sources = invoker.actual_sources |
1045 assert( | 1044 assert( |
1046 sources == invoker.actual_sources, | 1045 sources == invoker.actual_sources, |
1047 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1046 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1048 } | 1047 } |
1049 | 1048 |
1050 assert_valid_out_dir("_unused") { | 1049 assert_valid_out_dir("_unused") { |
1051 actual_sources = [ "$root_build_dir/foo" ] | 1050 actual_sources = [ "$root_build_dir/foo" ] |
1052 } | 1051 } |
OLD | NEW |