| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 } | 350 } |
| 351 | 351 |
| 352 if (v8_use_external_startup_data) { | 352 if (v8_use_external_startup_data) { |
| 353 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] | 353 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] |
| 354 } | 354 } |
| 355 | 355 |
| 356 if (is_win) { | 356 if (is_win) { |
| 357 deps += [ | 357 deps += [ |
| 358 "//chrome/installer/gcapi", | 358 "//chrome/installer/gcapi", |
| 359 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", | 359 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", |
| 360 "//chrome/tools/disable_outdated_build_detector", |
| 360 ] | 361 ] |
| 361 } | 362 } |
| 362 | 363 |
| 363 if (is_android) { | 364 if (is_android) { |
| 364 deps += [ | 365 deps += [ |
| 365 "//base:base_junit_tests", | 366 "//base:base_junit_tests", |
| 366 "//base/android/linker:chromium_android_linker", | 367 "//base/android/linker:chromium_android_linker", |
| 367 "//build/android/gyp/test:hello_world", | 368 "//build/android/gyp/test:hello_world", |
| 368 "//build/android/rezip", | 369 "//build/android/rezip", |
| 369 "//chrome/android/webapk/shell_apk:webapk", | 370 "//chrome/android/webapk/shell_apk:webapk", |
| (...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 "//ui/display:display_unittests", | 1122 "//ui/display:display_unittests", |
| 1122 "//ui/events:events_unittests", | 1123 "//ui/events:events_unittests", |
| 1123 "//ui/gfx:gfx_unittests", | 1124 "//ui/gfx:gfx_unittests", |
| 1124 "//ui/gl:gl_unittests", | 1125 "//ui/gl:gl_unittests", |
| 1125 "//ui/keyboard:keyboard_unittests", | 1126 "//ui/keyboard:keyboard_unittests", |
| 1126 "//ui/touch_selection:ui_touch_selection_unittests", | 1127 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1127 "//url:url_unittests", | 1128 "//url:url_unittests", |
| 1128 ] | 1129 ] |
| 1129 } | 1130 } |
| 1130 } | 1131 } |
| OLD | NEW |