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

Side by Side Diff: BUILD.gn

Issue 1039083004: Add remaining remoting targets for the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@content_browsertests
Patch Set: Created 5 years, 9 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 | build/config/linux/gtk/BUILD.gn » ('j') | build/gn_migration.gypi » ('J')
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
11 import("//build/config/features.gni") 11 import("//build/config/features.gni")
12 import("//build/config/ui.gni") 12 import("//build/config/ui.gni")
13 import("//remoting/remoting_host.gni")
13 14
14 if (is_android) { 15 if (is_android) {
15 import("//build/config/android/config.gni") 16 import("//build/config/android/config.gni")
16 } 17 }
17 18
18 declare_args() { 19 declare_args() {
19 # A list of extra dependencies to add to the root target. This allows a 20 # A list of extra dependencies to add to the root target. This allows a
20 # checkout to add additional targets without explicitly changing any checked- 21 # checkout to add additional targets without explicitly changing any checked-
21 # in files. 22 # in files.
22 root_extra_deps = [] 23 root_extra_deps = []
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "//url:url_unittests", 102 "//url:url_unittests",
102 ] 103 ]
103 104
104 deps += root_extra_deps 105 deps += root_extra_deps
105 106
106 # TODO(GYP): Get this working on the mac? 107 # TODO(GYP): Get this working on the mac?
107 if (enable_extensions && !is_mac) { 108 if (enable_extensions && !is_mac) {
108 deps += [ "//extensions/shell:app_shell_unittests" ] 109 deps += [ "//extensions/shell:app_shell_unittests" ]
109 } 110 }
110 111
111 if (!is_android) { 112 if (enable_remoting_host) {
112 deps += [ "//remoting:remoting_unittests" ] 113 deps += [
114 "//remoting:remoting_unittests",
115 "//remoting:remoting_perftests",
116 "//remoting/host",
117 "//remoting/host:remoting_start_host",
118 "//remoting/host/it2me:remote_assistance_host",
119 ]
120 }
121
122 if (enable_me2me_host) {
123 deps += [ "//remoting/host:remoting_me2me_host" ]
113 } 124 }
114 125
115 if (!is_win) { 126 if (!is_win) {
116 deps += [ "//breakpad:symupload" ] 127 deps += [ "//breakpad:symupload" ]
117 } 128 }
118 129
119 if (use_x11) { 130 if (use_x11) {
120 deps += [ "//tools/xdisplaycheck" ] 131 deps += [ "//tools/xdisplaycheck" ]
121 } 132 }
122 133
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 "//breakpad:minidump_dump", 347 "//breakpad:minidump_dump",
337 "//breakpad:minidump_stackwalk", 348 "//breakpad:minidump_stackwalk",
338 ] 349 ]
339 } 350 }
340 351
341 if (enable_extensions) { 352 if (enable_extensions) {
342 deps += [ "//extensions/shell:app_shell" ] 353 deps += [ "//extensions/shell:app_shell" ]
343 } 354 }
344 355
345 if (enable_nacl) { 356 if (enable_nacl) {
346 deps += [ "//components/nacl:nacl_loader_unittests" ] 357 deps += [
358 "//components/nacl:nacl_loader_unittests",
359 "//remoting:remoting_key_tester",
360 ]
347 } 361 }
348 362
349 if (!is_debug && !is_component_build) { 363 if (!is_debug && !is_component_build) {
350 deps += [ "//chrome/tools/service_discovery_sniffer" ] 364 deps += [ "//chrome/tools/service_discovery_sniffer" ]
351 } 365 }
352 366
353 if (toolkit_views) { 367 if (toolkit_views) {
354 deps += [ "//ui/app_list:app_list_demo" ] 368 deps += [ "//ui/app_list:app_list_demo" ]
355 } 369 }
356 370
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 667 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
654 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 668 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
655 "//ui/wm:wm_unittests", # PASSES 2/25/2015 669 "//ui/wm:wm_unittests", # PASSES 2/25/2015
656 "//url:url_unittests", # PASSES 2/25/2015 670 "//url:url_unittests", # PASSES 2/25/2015
657 671
658 # Note: 672 # Note:
659 # (*) Fails but failures match GYP build at time of testing. 673 # (*) Fails but failures match GYP build at time of testing.
660 ] 674 ]
661 } 675 }
662 } 676 }
OLDNEW
« no previous file with comments | « no previous file | build/config/linux/gtk/BUILD.gn » ('j') | build/gn_migration.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698