OLD | NEW |
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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 'dependencies': [ | 232 'dependencies': [ |
233 '../breakpad/breakpad.gyp:core-2-minidump', | 233 '../breakpad/breakpad.gyp:core-2-minidump', |
234 '../breakpad/breakpad.gyp:microdump_stackwalk', | 234 '../breakpad/breakpad.gyp:microdump_stackwalk', |
235 '../breakpad/breakpad.gyp:minidump_dump', | 235 '../breakpad/breakpad.gyp:minidump_dump', |
236 '../breakpad/breakpad.gyp:minidump_stackwalk', | 236 '../breakpad/breakpad.gyp:minidump_stackwalk', |
237 '../breakpad/breakpad.gyp:symupload', | 237 '../breakpad/breakpad.gyp:symupload', |
238 ], | 238 ], |
239 }], | 239 }], |
240 ['remoting==1', { | 240 ['remoting==1', { |
241 'dependencies': [ | 241 'dependencies': [ |
242 '../remoting/remoting.gyp:remoting_host', | 242 '../remoting/remoting_all.gyp:remoting_all', |
243 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host', | |
244 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', | |
245 '../remoting/remoting.gyp:remoting_me2me_host', | |
246 '../remoting/remoting.gyp:remoting_native_messaging_manifests', | |
247 '../remoting/remoting.gyp:remoting_perftests', | |
248 '../remoting/remoting.gyp:remoting_start_host', | |
249 '../remoting/remoting.gyp:remoting_unittests', | |
250 ], | |
251 }], | |
252 ['remoting==1 and disable_nacl==0 and disable_nacl_untrusted==0', { | |
253 'dependencies': [ | |
254 '../remoting/remoting.gyp:remoting_key_tester', | |
255 ], | 243 ], |
256 }], | 244 }], |
257 ['use_x11==1', { | 245 ['use_x11==1', { |
258 'dependencies': [ | 246 'dependencies': [ |
259 '../media/media.gyp:player_x11', | 247 '../media/media.gyp:player_x11', |
260 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 248 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
261 ], | 249 ], |
262 'conditions': [ | 250 'conditions': [ |
263 ['target_arch!="arm"', { | 251 ['target_arch!="arm"', { |
264 'dependencies': [ | 252 'dependencies': [ |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 'chromium_builder_perf', | 652 'chromium_builder_perf', |
665 'chromium_builder_tests', | 653 'chromium_builder_tests', |
666 'chromium_builder_webrtc', | 654 'chromium_builder_webrtc', |
667 'chromium_gpu_builder', | 655 'chromium_gpu_builder', |
668 'chromium_gpu_debug_builder', | 656 'chromium_gpu_debug_builder', |
669 ], | 657 ], |
670 }, | 658 }, |
671 ] | 659 ] |
672 } | 660 } |
673 | 661 |
OLD | NEW |