Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: BUILD.gn

Issue 2410163003: Enable remoting_me2me_host_archive in official build (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "//courgette:copy_courgette_binaries", 115 "//courgette:copy_courgette_binaries",
116 "//remoting/webapp", 116 "//remoting/webapp",
117 ] 117 ]
118 118
119 if (target_cpu == "x86") { 119 if (target_cpu == "x86") {
120 if (is_clang) { 120 if (is_clang) {
121 deps += [ "//courgette(//build/toolchain/win:clang_x64)" ] 121 deps += [ "//courgette(//build/toolchain/win:clang_x64)" ]
122 } else { 122 } else {
123 deps += [ "//courgette(//build/toolchain/win:x64)" ] 123 deps += [ "//courgette(//build/toolchain/win:x64)" ]
124 } 124 }
125 if (is_chrome_branded) { 125 }
126 if (is_chrome_branded) {
127 if (target_cpu == "x86") {
126 deps += [ "//remoting/host:remoting_host_installation" ] 128 deps += [ "//remoting/host:remoting_host_installation" ]
129 } else {
130 deps += [ "//remoting/host:remoting_me2me_host_archive" ]
Dirk Pranke 2016/10/12 18:54:50 Should :remoting_host_installation just depend on
127 } 131 }
128 } 132 }
129 } 133 }
130 134
131 group("chrome_official_builder") { 135 group("chrome_official_builder") {
132 testonly = true 136 testonly = true
133 137
134 deps = [ 138 deps = [
135 ":chrome_official_builder_no_unittests", 139 ":chrome_official_builder_no_unittests",
136 "//base:base_unittests", 140 "//base:base_unittests",
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "//media/capture:capture_unittests", 299 "//media/capture:capture_unittests",
296 "//media/cast:cast_unittests", 300 "//media/cast:cast_unittests",
297 "//media/midi:midi_unittests", 301 "//media/midi:midi_unittests",
298 "//mojo", 302 "//mojo",
299 "//mojo/common:mojo_common_unittests", 303 "//mojo/common:mojo_common_unittests",
300 "//mojo/edk/system:mojo_system_unittests", 304 "//mojo/edk/system:mojo_system_unittests",
301 "//mojo/edk/test:mojo_public_bindings_unittests", 305 "//mojo/edk/test:mojo_public_bindings_unittests",
302 "//mojo/edk/test:mojo_public_system_unittests", 306 "//mojo/edk/test:mojo_public_system_unittests",
303 "//net:net_perftests", 307 "//net:net_perftests",
304 "//services/shell/public/cpp", 308 "//services/shell/public/cpp",
305 "//third_party/angle/src/tests:angle_end2end_tests",
306 "//third_party/angle/src/tests:angle_unittests",
307 "//third_party/WebKit/Source/platform:blink_platform_unittests", 309 "//third_party/WebKit/Source/platform:blink_platform_unittests",
308 "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", 310 "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
309 "//third_party/WebKit/Source/web:webkit_unit_tests", 311 "//third_party/WebKit/Source/web:webkit_unit_tests",
310 "//third_party/WebKit/Source/wtf:wtf_unittests", 312 "//third_party/WebKit/Source/wtf:wtf_unittests",
313 "//third_party/angle/src/tests:angle_end2end_tests",
314 "//third_party/angle/src/tests:angle_unittests",
311 "//third_party/catapult/telemetry:bitmaptools($host_toolchain)", 315 "//third_party/catapult/telemetry:bitmaptools($host_toolchain)",
312 "//third_party/smhasher:pmurhash", 316 "//third_party/smhasher:pmurhash",
313 "//tools/imagediff($host_toolchain)", 317 "//tools/imagediff($host_toolchain)",
314 "//ui/display:display_unittests", 318 "//ui/display:display_unittests",
315 "//ui/events:events_unittests", 319 "//ui/events:events_unittests",
316 "//ui/gl:gl_unittests", 320 "//ui/gl:gl_unittests",
317 "//ui/touch_selection:ui_touch_selection_unittests", 321 "//ui/touch_selection:ui_touch_selection_unittests",
318 "//url/ipc:url_ipc_unittests", 322 "//url/ipc:url_ipc_unittests",
319 ] 323 ]
320 } else { 324 } else {
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 "//ui/display:display_unittests", 1158 "//ui/display:display_unittests",
1155 "//ui/events:events_unittests", 1159 "//ui/events:events_unittests",
1156 "//ui/gfx:gfx_unittests", 1160 "//ui/gfx:gfx_unittests",
1157 "//ui/gl:gl_unittests", 1161 "//ui/gl:gl_unittests",
1158 "//ui/keyboard:keyboard_unittests", 1162 "//ui/keyboard:keyboard_unittests",
1159 "//ui/touch_selection:ui_touch_selection_unittests", 1163 "//ui/touch_selection:ui_touch_selection_unittests",
1160 "//url:url_unittests", 1164 "//url:url_unittests",
1161 ] 1165 ]
1162 } 1166 }
1163 } 1167 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698