Chromium Code Reviews| 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 five targets that we are using to track the progress of the | 5 # This file defines five targets that we are using to track the progress of the |
| 6 # GYP->GN migration: | 6 # GYP->GN migration: |
| 7 # | 7 # |
| 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should | 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should |
| 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. | 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. |
| 10 # | 10 # |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 233 ['enable_mdns==1', { | 233 ['enable_mdns==1', { |
| 234 'dependencies': [ | 234 'dependencies': [ |
| 235 '../chrome/chrome.gyp:service_discovery_sniffer', | 235 '../chrome/chrome.gyp:service_discovery_sniffer', |
| 236 ] | 236 ] |
| 237 }], | 237 }], |
| 238 ['remoting==1', { | 238 ['remoting==1', { |
| 239 'dependencies': [ | 239 'dependencies': [ |
| 240 '../remoting/remoting_all.gyp:remoting_all', | 240 '../remoting/remoting_all.gyp:remoting_all', |
| 241 ], | 241 ], |
| 242 }], | 242 }], |
| 243 ['remoting==1 and chromeos==0', { | 243 ['remoting==1 and chromeos==0 and use_x11==1', { |
|
Dirk Pranke
2015/05/18 20:44:16
This seems to be the right change to at least matc
babu
2015/05/19 11:10:53
Thanks for reviewing, Dirk!
This fixes the build
Dirk Pranke
2015/05/19 19:54:47
Oh, I'm sorry, I totally misread this and thought
| |
| 244 'dependencies': [ | 244 'dependencies': [ |
| 245 '../remoting/remoting.gyp:remoting_me2me_host', | 245 '../remoting/remoting.gyp:remoting_me2me_host', |
| 246 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', | 246 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', |
| 247 ], | 247 ], |
| 248 }], | 248 }], |
| 249 ['toolkit_views==1', { | 249 ['toolkit_views==1', { |
| 250 'dependencies': [ | 250 'dependencies': [ |
| 251 '../ui/app_list/app_list.gyp:app_list_demo', | 251 '../ui/app_list/app_list.gyp:app_list_demo', |
| 252 '../ui/views/views.gyp:views_unittests', | 252 '../ui/views/views.gyp:views_unittests', |
| 253 ], | 253 ], |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 673 'dependencies': [ | 673 'dependencies': [ |
| 674 # TODO(GYP): All of these targets need to be ported over. | 674 # TODO(GYP): All of these targets need to be ported over. |
| 675 '../components/components.gyp:policy_win64', | 675 '../components/components.gyp:policy_win64', |
| 676 ] | 676 ] |
| 677 }], | 677 }], |
| 678 ], | 678 ], |
| 679 }, | 679 }, |
| 680 ] | 680 ] |
| 681 } | 681 } |
| 682 | 682 |
| OLD | NEW |