| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 if (is_android) { | 254 if (is_android) { |
| 255 deps += [ | 255 deps += [ |
| 256 "//base:base_junit_tests", | 256 "//base:base_junit_tests", |
| 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 "//media/gpu:video_decode_accelerator_unittest", | 265 "//media/gpu:video_decode_accelerator_unittest", |
| 265 "//net/android:net_junit_tests", | 266 "//net/android:net_junit_tests", |
| 266 "//testing/android/junit:junit_unit_tests", | 267 "//testing/android/junit:junit_unit_tests", |
| 267 "//third_party/android_async_task:android_async_task_java", | 268 "//third_party/android_async_task:android_async_task_java", |
| 268 "//third_party/errorprone:chromium_errorprone", | 269 "//third_party/errorprone:chromium_errorprone", |
| 269 "//third_party/smhasher:murmurhash3", | 270 "//third_party/smhasher:murmurhash3", |
| 270 "//tools/android:android_tools", | 271 "//tools/android:android_tools", |
| 271 "//tools/android:memconsumer", | 272 "//tools/android:memconsumer", |
| 272 "//tools/android:push_apps_to_background", | 273 "//tools/android:push_apps_to_background", |
| 273 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk", | 274 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk", |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 assert(target_name != "") # Mark as used. | 1072 assert(target_name != "") # Mark as used. |
| 1072 sources = invoker.actual_sources | 1073 sources = invoker.actual_sources |
| 1073 assert( | 1074 assert( |
| 1074 sources == invoker.actual_sources, | 1075 sources == invoker.actual_sources, |
| 1075 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1076 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1076 } | 1077 } |
| 1077 | 1078 |
| 1078 assert_valid_out_dir("_unused") { | 1079 assert_valid_out_dir("_unused") { |
| 1079 actual_sources = [ "$root_build_dir/foo" ] | 1080 actual_sources = [ "$root_build_dir/foo" ] |
| 1080 } | 1081 } |
| OLD | NEW |