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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 group("both_gn_and_gyp") { | 96 group("both_gn_and_gyp") { |
97 testonly = true | 97 testonly = true |
98 deps = [ | 98 deps = [ |
99 "//base:base_unittests", | 99 "//base:base_unittests", |
100 "//chrome/installer", | 100 "//chrome/installer", |
101 "//components:components_unittests", | 101 "//components:components_unittests", |
102 "//net:net_unittests", | 102 "//net:net_unittests", |
103 "//skia:skia_unittests", | 103 "//skia:skia_unittests", |
104 "//sql:sql_unittests", | 104 "//sql:sql_unittests", |
105 "//sync:sync_unit_tests", | 105 "//sync:sync_unit_tests", |
| 106 "//tools/ipc_fuzzer:ipc_fuzzer_all", |
106 "//ui/base:ui_base_unittests", | 107 "//ui/base:ui_base_unittests", |
107 "//ui/gfx:gfx_unittests", | 108 "//ui/gfx:gfx_unittests", |
108 "//url:url_unittests", | 109 "//url:url_unittests", |
109 ] | 110 ] |
110 | 111 |
111 if (!is_android && !is_chromecast) { | 112 if (!is_android && !is_chromecast) { |
112 deps += [ | 113 deps += [ |
113 "//crypto:crypto_unittests", | 114 "//crypto:crypto_unittests", |
114 "//google_apis/gcm:gcm_unit_tests", | 115 "//google_apis/gcm:gcm_unit_tests", |
115 ] | 116 ] |
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
910 assert(target_name != "") # Mark as used. | 911 assert(target_name != "") # Mark as used. |
911 sources = invoker.actual_sources | 912 sources = invoker.actual_sources |
912 assert( | 913 assert( |
913 sources == invoker.actual_sources, | 914 sources == invoker.actual_sources, |
914 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 915 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
915 } | 916 } |
916 | 917 |
917 assert_valid_out_dir("_unused") { | 918 assert_valid_out_dir("_unused") { |
918 actual_sources = [ "$root_build_dir/foo" ] | 919 actual_sources = [ "$root_build_dir/foo" ] |
919 } | 920 } |
OLD | NEW |