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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 303 "//components/cronet/android:cronet_test_apk", | 303 "//components/cronet/android:cronet_test_apk", |
| 304 "//components/cronet/android:cronet_test_instrumentation_apk", | 304 "//components/cronet/android:cronet_test_instrumentation_apk", |
| 305 "//components/cronet/android:cronet_unittests", | 305 "//components/cronet/android:cronet_unittests", |
| 306 ] | 306 ] |
| 307 } | 307 } |
| 308 | 308 |
| 309 if (!is_chromecast) { | 309 if (!is_chromecast) { |
| 310 deps += [ | 310 deps += [ |
| 311 "//android_webview", | 311 "//android_webview", |
| 312 "//android_webview/test", | 312 "//android_webview/test", |
| 313 "//android_webview/tools", | 313 "//android_webview/tools/webview_shell", |
|
timvolodine
2016/03/14 19:36:38
why is this needed?
mikecase (-- gone --)
2016/03/15 21:08:01
This is needed because I moved the BUILD.gn file f
| |
| 314 "//chrome/android:chrome_junit_tests", | 314 "//chrome/android:chrome_junit_tests", |
| 315 "//chrome/android:chrome_public_apk", | 315 "//chrome/android:chrome_public_apk", |
| 316 "//chrome/android:chrome_public_test_apk", | 316 "//chrome/android:chrome_public_test_apk", |
| 317 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk", | 317 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk", |
| 318 "//content/shell/android:content_shell_test_apk", | 318 "//content/shell/android:content_shell_test_apk", |
| 319 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", | 319 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", |
| 320 ] | 320 ] |
| 321 } | 321 } |
| 322 | 322 |
| 323 if (target_cpu != "x64") { | 323 if (target_cpu != "x64") { |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 899 assert(target_name != "") # Mark as used. | 899 assert(target_name != "") # Mark as used. |
| 900 sources = invoker.actual_sources | 900 sources = invoker.actual_sources |
| 901 assert( | 901 assert( |
| 902 sources == invoker.actual_sources, | 902 sources == invoker.actual_sources, |
| 903 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") | 903 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") |
| 904 } | 904 } |
| 905 | 905 |
| 906 assert_valid_out_dir("_unused") { | 906 assert_valid_out_dir("_unused") { |
| 907 actual_sources = [ "$root_build_dir/foo" ] | 907 actual_sources = [ "$root_build_dir/foo" ] |
| 908 } | 908 } |
| OLD | NEW |