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

Side by Side Diff: build/gn_migration.gypi

Issue 1039083004: Add remaining remoting targets for the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@content_browsertests
Patch Set: disable remoting_host on mac, win Created 5 years, 8 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 | « build/config/linux/gtk/BUILD.gn ('k') | remoting/BUILD.gn » ('j') | 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) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 file defines three targets that we are using to 5 # This file defines three targets that we are using to
6 # track the progress of the GYP->GN migration: 6 # track the progress of the GYP->GN migration:
7 # 7 #
8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then 8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then
9 # run 'ninja', the second ninja invocation should do nothing. This 9 # run 'ninja', the second ninja invocation should do nothing. This
10 # indicates that everything built by a ninja build is in fact 10 # indicates that everything built by a ninja build is in fact
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes ts', 179 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes ts',
180 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 180 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
181 '../url/url.gyp:url_unittests', 181 '../url/url.gyp:url_unittests',
182 '../v8/tools/gyp/v8.gyp:v8_snapshot', 182 '../v8/tools/gyp/v8.gyp:v8_snapshot',
183 '../v8/tools/gyp/v8.gyp:postmortem-metadata', 183 '../v8/tools/gyp/v8.gyp:postmortem-metadata',
184 ], 184 ],
185 'conditions': [ 185 'conditions': [
186 ['chromeos== 1 or use_ash==1', { 186 ['chromeos== 1 or use_ash==1', {
187 'dependencies': [ 187 'dependencies': [
188 '../components/components.gyp:session_manager_component', 188 '../components/components.gyp:session_manager_component',
189 ]
190 }],
191 ['disable_nacl==0 and disable_nacl_untrusted==0', {
192 'dependencies': [
193 '../remoting/remoting.gyp:remoting_key_tester',
189 ], 194 ],
190 }], 195 }],
191 ['disable_nacl==0 and disable_nacl_untrusted==0', { 196 ['disable_nacl==0 and disable_nacl_untrusted==0', {
192 'dependencies': [ 197 'dependencies': [
193 '../components/nacl.gyp:nacl_loader_unittests', 198 '../components/nacl.gyp:nacl_loader_unittests',
194 ] 199 ]
195 }], 200 }],
196 ['enable_extensions==1 and OS!="mac"', { 201 ['enable_extensions==1 and OS!="mac"', {
197 'dependencies': [ 202 'dependencies': [
198 '../extensions/shell/app_shell.gyp:app_shell', 203 '../extensions/shell/app_shell.gyp:app_shell',
199 '../extensions/shell/app_shell.gyp:app_shell_unittests', 204 '../extensions/shell/app_shell.gyp:app_shell_unittests',
200 ], 205 ],
201 }], 206 }],
202 ['OS!="win"', { 207 ['OS!="win"', {
203 'dependencies': [ 208 'dependencies': [
204 '../breakpad/breakpad.gyp:symupload', 209 '../breakpad/breakpad.gyp:symupload',
205 ], 210 ],
206 }], 211 }],
207 ['remoting==1', { 212 ['remoting==1', {
208 'dependencies': [ 213 'dependencies': [
214 '../remoting/remoting.gyp:remoting_host',
215 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host',
216 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host',
217 '../remoting/remoting.gyp:remoting_me2me_host',
218 '../remoting/remoting.gyp:remoting_native_messaging_manifests',
219 '../remoting/remoting.gyp:remoting_perftests',
220 '../remoting/remoting.gyp:remoting_start_host',
209 '../remoting/remoting.gyp:remoting_unittests', 221 '../remoting/remoting.gyp:remoting_unittests',
210 ], 222 ],
211 }], 223 }],
212 ['use_x11==1', { 224 ['use_x11==1', {
213 'dependencies': [ 225 'dependencies': [
214 '../media/media.gyp:player_x11', 226 '../media/media.gyp:player_x11',
215 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 227 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
216 ], 228 ],
217 'conditions': [ 229 'conditions': [
218 ['target_arch!="arm"', { 230 ['target_arch!="arm"', {
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 'dependencies': [ 451 'dependencies': [
440 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 452 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
441 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 453 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
442 454
443 # TODO(GYP) - list all of the examples explicitly. 455 # TODO(GYP) - list all of the examples explicitly.
444 '../ppapi/ppapi_internal.gyp:*', 456 '../ppapi/ppapi_internal.gyp:*',
445 ], 457 ],
446 'conditions': [ 458 'conditions': [
447 ['remoting==1', { 459 ['remoting==1', {
448 'dependencies': [ 460 'dependencies': [
449 '../remoting/app_remoting_webapp.gyp:ar_sample_app', 461 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.co m/471916
450 '../remoting/remoting.gyp:remoting_host',
451 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host',
452 '../remoting/remoting.gyp:remoting_me2me_host',
453 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host',
454 '../remoting/remoting.gyp:remoting_native_messaging_manifests',
455 '../remoting/remoting.gyp:remoting_perftests',
456 '../remoting/remoting.gyp:remoting_start_host',
457 ], 462 ],
458 'conditions': [ 463 'conditions': [
459 ['disable_nacl==0 and disable_nacl_untrusted==0', { 464 ['disable_nacl==0 and disable_nacl_untrusted==0', {
460 'dependencies': [ 465 'dependencies': [
461 '../remoting/remoting.gyp:remoting_key_tester', 466 '../remoting/remoting.gyp:remoting_key_tester',
462 ] 467 ]
463 }], 468 }],
464 ], 469 ],
465 }], 470 }],
466 ['test_isolation_mode!="noop"', { 471 ['test_isolation_mode!="noop"', {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 'chromium_builder_perf', 522 'chromium_builder_perf',
518 'chromium_builder_tests', 523 'chromium_builder_tests',
519 'chromium_builder_webrtc', 524 'chromium_builder_webrtc',
520 'chromium_gpu_builder', 525 'chromium_gpu_builder',
521 'chromium_gpu_debug_builder', 526 'chromium_gpu_debug_builder',
522 ], 527 ],
523 }, 528 },
524 ] 529 ]
525 } 530 }
526 531
OLDNEW
« no previous file with comments | « build/config/linux/gtk/BUILD.gn ('k') | remoting/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698