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 27 matching lines...) Expand all Loading... |
38 | 38 |
39 deps = [ | 39 deps = [ |
40 "//base:base_unittests", | 40 "//base:base_unittests", |
41 "//cc:cc_unittests", | 41 "//cc:cc_unittests", |
42 "//chrome", | 42 "//chrome", |
43 "//chrome/test:browser_tests", | 43 "//chrome/test:browser_tests", |
44 "//chrome/test:interactive_ui_tests", | 44 "//chrome/test:interactive_ui_tests", |
45 "//chrome/test:sync_integration_tests", | 45 "//chrome/test:sync_integration_tests", |
46 "//chrome/test:unit_tests", | 46 "//chrome/test:unit_tests", |
47 "//chrome/test/chromedriver:chromedriver_unittests", | 47 "//chrome/test/chromedriver:chromedriver_unittests", |
| 48 "//cloud_print:cloud_print_unittests", |
48 "//components:components_browsertests", | 49 "//components:components_browsertests", |
49 "//components:components_unittests", | 50 "//components:components_unittests", |
50 "//components/policy:policy_templates", | 51 "//components/policy:policy_templates", |
51 "//content/shell:content_shell", | 52 "//content/shell:content_shell", |
52 "//content/test:content_browsertests", | 53 "//content/test:content_browsertests", |
53 "//content/test:content_perftests", | 54 "//content/test:content_perftests", |
54 "//content/test:content_unittests", | 55 "//content/test:content_unittests", |
55 "//crypto:crypto_unittests", | 56 "//crypto:crypto_unittests", |
56 "//extensions:extensions_browsertests", | 57 "//extensions:extensions_browsertests", |
57 "//extensions:extensions_unittests", | 58 "//extensions:extensions_unittests", |
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 | 657 |
657 # Note: | 658 # Note: |
658 # (*) Fails but failures match GYP build at time of testing. | 659 # (*) Fails but failures match GYP build at time of testing. |
659 ] | 660 ] |
660 | 661 |
661 if (enable_nacl) { | 662 if (enable_nacl) { |
662 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 663 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
663 } | 664 } |
664 } | 665 } |
665 } | 666 } |
OLD | NEW |