| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', | 216 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', |
| 217 '../remoting/remoting.gyp:remoting_me2me_host', | 217 '../remoting/remoting.gyp:remoting_me2me_host', |
| 218 '../remoting/remoting.gyp:remoting_native_messaging_manifests', | 218 '../remoting/remoting.gyp:remoting_native_messaging_manifests', |
| 219 '../remoting/remoting.gyp:remoting_perftests', | 219 '../remoting/remoting.gyp:remoting_perftests', |
| 220 '../remoting/remoting.gyp:remoting_start_host', | 220 '../remoting/remoting.gyp:remoting_start_host', |
| 221 '../remoting/remoting.gyp:remoting_unittests', | 221 '../remoting/remoting.gyp:remoting_unittests', |
| 222 ], | 222 ], |
| 223 }], | 223 }], |
| 224 ['use_x11==1', { | 224 ['use_x11==1', { |
| 225 'dependencies': [ | 225 'dependencies': [ |
| 226 '../media/media.gyp:player_x11', | |
| 227 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 226 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 228 ], | 227 ], |
| 229 'conditions': [ | 228 'conditions': [ |
| 230 ['target_arch!="arm"', { | 229 ['target_arch!="arm"', { |
| 231 'dependencies': [ | 230 'dependencies': [ |
| 232 '../gpu/tools/tools.gyp:compositor_model_bench', | 231 '../gpu/tools/tools.gyp:compositor_model_bench', |
| 233 ], | 232 ], |
| 234 }], | 233 }], |
| 235 ], | 234 ], |
| 236 }], | 235 }], |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 'chromium_builder_perf', | 521 'chromium_builder_perf', |
| 523 'chromium_builder_tests', | 522 'chromium_builder_tests', |
| 524 'chromium_builder_webrtc', | 523 'chromium_builder_webrtc', |
| 525 'chromium_gpu_builder', | 524 'chromium_gpu_builder', |
| 526 'chromium_gpu_debug_builder', | 525 'chromium_gpu_debug_builder', |
| 527 ], | 526 ], |
| 528 }, | 527 }, |
| 529 ] | 528 ] |
| 530 } | 529 } |
| 531 | 530 |
| OLD | NEW |