| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 } | 348 } |
| 349 | 349 |
| 350 if (v8_use_external_startup_data) { | 350 if (v8_use_external_startup_data) { |
| 351 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] | 351 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] |
| 352 } | 352 } |
| 353 | 353 |
| 354 if (is_win) { | 354 if (is_win) { |
| 355 deps += [ | 355 deps += [ |
| 356 "//chrome/installer/gcapi", | 356 "//chrome/installer/gcapi", |
| 357 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", | 357 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", |
| 358 "//chrome/tools/disable_outdated_build_detector", |
| 358 ] | 359 ] |
| 359 } | 360 } |
| 360 | 361 |
| 361 if (is_android) { | 362 if (is_android) { |
| 362 deps += [ | 363 deps += [ |
| 363 "//base:base_junit_tests", | 364 "//base:base_junit_tests", |
| 364 "//base/android/linker:chromium_android_linker", | 365 "//base/android/linker:chromium_android_linker", |
| 365 "//build/android/gyp/test:hello_world", | 366 "//build/android/gyp/test:hello_world", |
| 366 "//build/android/rezip", | 367 "//build/android/rezip", |
| 367 "//chrome/android/webapk/shell_apk:webapk", | 368 "//chrome/android/webapk/shell_apk:webapk", |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 assert(target_name != "") # Mark as used. | 1042 assert(target_name != "") # Mark as used. |
| 1042 sources = invoker.actual_sources | 1043 sources = invoker.actual_sources |
| 1043 assert( | 1044 assert( |
| 1044 sources == invoker.actual_sources, | 1045 sources == invoker.actual_sources, |
| 1045 "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") |
| 1046 } | 1047 } |
| 1047 | 1048 |
| 1048 assert_valid_out_dir("_unused") { | 1049 assert_valid_out_dir("_unused") { |
| 1049 actual_sources = [ "$root_build_dir/foo" ] | 1050 actual_sources = [ "$root_build_dir/foo" ] |
| 1050 } | 1051 } |
| OLD | NEW |