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

Side by Side Diff: build/gn_migration.gypi

Issue 1139973005: Fix gyp failure on linux when use_ozone=1 is set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | no next file » | 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 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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698