| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "//base:base_unittests", | 43 "//base:base_unittests", |
| 44 "//cc:cc_unittests", | 44 "//cc:cc_unittests", |
| 45 "//chrome", | 45 "//chrome", |
| 46 "//chrome/test:browser_tests", | 46 "//chrome/test:browser_tests", |
| 47 "//chrome/test:interactive_ui_tests", | 47 "//chrome/test:interactive_ui_tests", |
| 48 "//chrome/test:sync_integration_tests", | 48 "//chrome/test:sync_integration_tests", |
| 49 "//chrome/test:unit_tests", | 49 "//chrome/test:unit_tests", |
| 50 "//chrome/test/chromedriver:chromedriver_unittests", | 50 "//chrome/test/chromedriver:chromedriver_unittests", |
| 51 "//components:components_browsertests", | 51 "//components:components_browsertests", |
| 52 "//components:components_unittests", | 52 "//components:components_unittests", |
| 53 "//components/policy:policy_templates", | |
| 54 "//content/shell:content_shell", | 53 "//content/shell:content_shell", |
| 55 "//content/test:content_browsertests", | 54 "//content/test:content_browsertests", |
| 56 "//content/test:content_perftests", | 55 "//content/test:content_perftests", |
| 57 "//content/test:content_unittests", | 56 "//content/test:content_unittests", |
| 58 "//crypto:crypto_unittests", | 57 "//crypto:crypto_unittests", |
| 59 "//device:device_unittests", | 58 "//device:device_unittests", |
| 60 "//extensions:extensions_browsertests", | 59 "//extensions:extensions_browsertests", |
| 61 "//extensions:extensions_unittests", | 60 "//extensions:extensions_unittests", |
| 62 "//google_apis/gcm:gcm_unit_tests", | 61 "//google_apis/gcm:gcm_unit_tests", |
| 63 "//gpu:gpu_unittests", | 62 "//gpu:gpu_unittests", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 } | 168 } |
| 170 | 169 |
| 171 if (use_ozone) { | 170 if (use_ozone) { |
| 172 deps += [ "//ui/ozone" ] | 171 deps += [ "//ui/ozone" ] |
| 173 } | 172 } |
| 174 | 173 |
| 175 if (use_x11) { | 174 if (use_x11) { |
| 176 deps += [ "//tools/xdisplaycheck" ] | 175 deps += [ "//tools/xdisplaycheck" ] |
| 177 } | 176 } |
| 178 | 177 |
| 178 if (enable_configuration_policy) { |
| 179 deps += [ "//components/policy:policy_templates" ] |
| 180 } |
| 181 |
| 179 if (v8_use_external_startup_data) { | 182 if (v8_use_external_startup_data) { |
| 180 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] | 183 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] |
| 181 } | 184 } |
| 182 | 185 |
| 183 if (is_android) { | 186 if (is_android) { |
| 184 deps += [ | 187 deps += [ |
| 185 "//base/android/linker:chromium_android_linker", | 188 "//base/android/linker:chromium_android_linker", |
| 186 "//build/android/gyp/test:hello_world", | 189 "//build/android/gyp/test:hello_world", |
| 187 "//build/android/rezip", | 190 "//build/android/rezip", |
| 188 "//chrome/android:chrome_shell_apk", | 191 "//chrome/android:chrome_shell_apk", |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 | 777 |
| 775 # Note: | 778 # Note: |
| 776 # (*) Fails but failures match GYP build at time of testing. | 779 # (*) Fails but failures match GYP build at time of testing. |
| 777 ] | 780 ] |
| 778 | 781 |
| 779 if (enable_nacl) { | 782 if (enable_nacl) { |
| 780 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 783 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
| 781 } | 784 } |
| 782 } | 785 } |
| 783 } | 786 } |
| OLD | NEW |