| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "//printing:printing_unittests", | 129 "//printing:printing_unittests", |
| 130 "//sql:sql_unittests", | 130 "//sql:sql_unittests", |
| 131 "//sync:sync_unit_tests", | 131 "//sync:sync_unit_tests", |
| 132 "//ui/base:ui_base_unittests", | 132 "//ui/base:ui_base_unittests", |
| 133 "//ui/gfx:gfx_unittests", | 133 "//ui/gfx:gfx_unittests", |
| 134 "//ui/touch_selection:ui_touch_selection_unittests", | 134 "//ui/touch_selection:ui_touch_selection_unittests", |
| 135 "//ui/views:views_unittests", | 135 "//ui/views:views_unittests", |
| 136 "//url:url_unittests", | 136 "//url:url_unittests", |
| 137 ] | 137 ] |
| 138 } | 138 } |
| 139 |
| 140 group("All_syzygy") { |
| 141 if (is_syzyasan || syzygy_optimize) { |
| 142 deps = [ |
| 143 "//chrome/installer/mini_installer:mini_installer", |
| 144 "//chrome/installer/mini_installer:mini_installer_syzygy", |
| 145 ] |
| 146 } |
| 147 } |
| 139 } | 148 } |
| 140 | 149 |
| 141 if (is_chromeos) { | 150 if (is_chromeos) { |
| 142 group("chromiumos_preflight") { | 151 group("chromiumos_preflight") { |
| 143 testonly = true | 152 testonly = true |
| 144 deps = [ | 153 deps = [ |
| 145 "//breakpad:minidump_stackwalk($host_toolchain)", | 154 "//breakpad:minidump_stackwalk($host_toolchain)", |
| 146 "//chrome", | 155 "//chrome", |
| 147 "//chrome/test/chromedriver", | 156 "//chrome/test/chromedriver", |
| 148 "//media:media_unittests", | 157 "//media:media_unittests", |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1034 assert(target_name != "") # Mark as used. | 1043 assert(target_name != "") # Mark as used. |
| 1035 sources = invoker.actual_sources | 1044 sources = invoker.actual_sources |
| 1036 assert( | 1045 assert( |
| 1037 sources == invoker.actual_sources, | 1046 sources == invoker.actual_sources, |
| 1038 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1047 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1039 } | 1048 } |
| 1040 | 1049 |
| 1041 assert_valid_out_dir("_unused") { | 1050 assert_valid_out_dir("_unused") { |
| 1042 actual_sources = [ "$root_build_dir/foo" ] | 1051 actual_sources = [ "$root_build_dir/foo" ] |
| 1043 } | 1052 } |
| OLD | NEW |