| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 ] | 220 ] |
| 221 }], | 221 }], |
| 222 ['enable_extensions==1 and OS!="mac"', { | 222 ['enable_extensions==1 and OS!="mac"', { |
| 223 'dependencies': [ | 223 'dependencies': [ |
| 224 '../extensions/shell/app_shell.gyp:app_shell', | 224 '../extensions/shell/app_shell.gyp:app_shell', |
| 225 '../extensions/shell/app_shell.gyp:app_shell_unittests', | 225 '../extensions/shell/app_shell.gyp:app_shell_unittests', |
| 226 ], | 226 ], |
| 227 }], | 227 }], |
| 228 ['remoting==1', { | 228 ['remoting==1', { |
| 229 'dependencies': [ | 229 'dependencies': [ |
| 230 '../remoting/remoting.gyp:remoting_host', | 230 '../remoting/remoting_all.gyp:remoting_all', |
| 231 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host', | |
| 232 '../remoting/remoting.gyp:remoting_start_host', | |
| 233 '../remoting/remoting.gyp:remoting_native_messaging_manifests', | |
| 234 '../remoting/remoting.gyp:remoting_perftests', | |
| 235 '../remoting/remoting.gyp:remoting_unittests', | |
| 236 ], | |
| 237 }], | |
| 238 ['remoting==1 and disable_nacl==0 and disable_nacl_untrusted==0', { | |
| 239 'dependencies': [ | |
| 240 '../remoting/remoting.gyp:remoting_key_tester', | |
| 241 ], | 231 ], |
| 242 }], | 232 }], |
| 243 ['remoting==1 and chromeos==0', { | 233 ['remoting==1 and chromeos==0', { |
| 244 'dependencies': [ | 234 'dependencies': [ |
| 245 '../remoting/remoting.gyp:remoting_me2me_host', | 235 '../remoting/remoting.gyp:remoting_me2me_host', |
| 246 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', | 236 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', |
| 247 ], | 237 ], |
| 248 }], | 238 }], |
| 249 ['toolkit_views==1', { | 239 ['toolkit_views==1', { |
| 250 'dependencies': [ | 240 'dependencies': [ |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 'chromium_builder_nacl_sdk', | 687 'chromium_builder_nacl_sdk', |
| 698 'chromium_builder_lkgr_drmemory_win', | 688 'chromium_builder_lkgr_drmemory_win', |
| 699 'chromium_builder_dbg_tsan_win', | 689 'chromium_builder_dbg_tsan_win', |
| 700 ], | 690 ], |
| 701 }], | 691 }], |
| 702 ], | 692 ], |
| 703 }, | 693 }, |
| 704 ] | 694 ] |
| 705 } | 695 } |
| 706 | 696 |
| OLD | NEW |