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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 "//chrome/installer/gcapi", | 394 "//chrome/installer/gcapi", |
395 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", | 395 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", |
396 ] | 396 ] |
397 } | 397 } |
398 | 398 |
399 if (is_android) { | 399 if (is_android) { |
400 deps += [ | 400 deps += [ |
401 "//base:base_junit_tests", | 401 "//base:base_junit_tests", |
402 "//base/android/linker:chromium_android_linker", | 402 "//base/android/linker:chromium_android_linker", |
403 "//build/android/gyp/test:hello_world", | 403 "//build/android/gyp/test:hello_world", |
404 "//build/android/rezip", | |
405 "//chrome/android/webapk/shell_apk:webapk", | 404 "//chrome/android/webapk/shell_apk:webapk", |
406 "//components/invalidation/impl:components_invalidation_impl_junit_tests", | 405 "//components/invalidation/impl:components_invalidation_impl_junit_tests", |
407 "//components/policy/android:components_policy_junit_tests", | 406 "//components/policy/android:components_policy_junit_tests", |
408 "//content/public/android:content_junit_tests", | 407 "//content/public/android:content_junit_tests", |
409 "//content/shell/android:content_shell_apk", | 408 "//content/shell/android:content_shell_apk", |
410 "//media/gpu:video_decode_accelerator_unittest", | 409 "//media/gpu:video_decode_accelerator_unittest", |
411 "//net/android:net_junit_tests", | 410 "//net/android:net_junit_tests", |
412 "//testing/android/junit:junit_unit_tests", | 411 "//testing/android/junit:junit_unit_tests", |
413 "//third_party/android_async_task:android_async_task_java", | 412 "//third_party/android_async_task:android_async_task_java", |
414 "//third_party/errorprone:chromium_errorprone", | 413 "//third_party/errorprone:chromium_errorprone", |
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 assert(target_name != "") # Mark as used. | 1099 assert(target_name != "") # Mark as used. |
1101 sources = invoker.actual_sources | 1100 sources = invoker.actual_sources |
1102 assert( | 1101 assert( |
1103 sources == invoker.actual_sources, | 1102 sources == invoker.actual_sources, |
1104 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1103 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1105 } | 1104 } |
1106 | 1105 |
1107 assert_valid_out_dir("_unused") { | 1106 assert_valid_out_dir("_unused") { |
1108 actual_sources = [ "$root_build_dir/foo" ] | 1107 actual_sources = [ "$root_build_dir/foo" ] |
1109 } | 1108 } |
OLD | NEW |