| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "//courgette", | 106 "//courgette", |
| 107 "//remoting/webapp", | 107 "//remoting/webapp", |
| 108 ] | 108 ] |
| 109 if (target_cpu == "x86") { | 109 if (target_cpu == "x86") { |
| 110 deps += [ "//courgette(//build/toolchain/win:x64)" ] | 110 deps += [ "//courgette(//build/toolchain/win:x64)" ] |
| 111 } | 111 } |
| 112 if (is_chrome_branded) { | 112 if (is_chrome_branded) { |
| 113 deps += [ "//remoting/host:remoting_host_installation" ] | 113 deps += [ "//remoting/host:remoting_host_installation" ] |
| 114 } | 114 } |
| 115 } | 115 } |
| 116 |
| 117 group("chrome_official_builder") { |
| 118 testonly = true |
| 119 |
| 120 deps = [ |
| 121 ":chrome_official_builder_no_unittests", |
| 122 "//base:base_unittests", |
| 123 "//chrome/test:browser_tests", |
| 124 "//chrome/test:sync_integration_tests", |
| 125 "//ipc:ipc_tests", |
| 126 "//media:media_unittests", |
| 127 "//media/midi:midi_unittests", |
| 128 "//net:net_unittests", |
| 129 "//printing:printing_unittests", |
| 130 "//sql:sql_unittests", |
| 131 "//sync:sync_unit_tests", |
| 132 "//ui/base:ui_base_unittests", |
| 133 "//ui/gfx:gfx_unittests", |
| 134 "//ui/touch_selection:ui_touch_selection_unittests", |
| 135 "//ui/views:views_unittests", |
| 136 "//url:url_unittests", |
| 137 ] |
| 138 } |
| 116 } | 139 } |
| 117 | 140 |
| 118 if (is_chromeos) { | 141 if (is_chromeos) { |
| 119 group("chromiumos_preflight") { | 142 group("chromiumos_preflight") { |
| 120 testonly = true | 143 testonly = true |
| 121 deps = [ | 144 deps = [ |
| 122 "//breakpad:minidump_stackwalk($host_toolchain)", | 145 "//breakpad:minidump_stackwalk($host_toolchain)", |
| 123 "//chrome", | 146 "//chrome", |
| 124 "//chrome/test/chromedriver", | 147 "//chrome/test/chromedriver", |
| 125 "//media:media_unittests", | 148 "//media:media_unittests", |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 assert(target_name != "") # Mark as used. | 1034 assert(target_name != "") # Mark as used. |
| 1012 sources = invoker.actual_sources | 1035 sources = invoker.actual_sources |
| 1013 assert( | 1036 assert( |
| 1014 sources == invoker.actual_sources, | 1037 sources == invoker.actual_sources, |
| 1015 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1038 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1016 } | 1039 } |
| 1017 | 1040 |
| 1018 assert_valid_out_dir("_unused") { | 1041 assert_valid_out_dir("_unused") { |
| 1019 actual_sources = [ "$root_build_dir/foo" ] | 1042 actual_sources = [ "$root_build_dir/foo" ] |
| 1020 } | 1043 } |
| OLD | NEW |