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

Side by Side Diff: ui/ui.gyp

Issue 54583002: Fix for iOS build after r231478. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« build/all.gyp ('K') | « build/all.gyp ('k') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 ], 329 ],
330 }], 330 }],
331 ], 331 ],
332 'conditions': [ 332 'conditions': [
333 ['OS!="ios"', { 333 ['OS!="ios"', {
334 'includes': [ 334 'includes': [
335 'base/ime/ime.gypi', 335 'base/ime/ime.gypi',
336 ], 336 ],
337 }, { # OS=="ios" 337 }, { # OS=="ios"
338 # iOS only uses a subset of UI. 338 # iOS only uses a subset of UI.
339 'dependencies': [
340 'ui_unittests.gyp:ui_unittests',
lliabraa 2013/10/31 11:58:41 We only need to add this dependency in one place a
341 ],
339 'sources/': [ 342 'sources/': [
340 ['exclude', '\\.(cc|mm)$'], 343 ['exclude', '\\.(cc|mm)$'],
341 ['include', '_ios\\.(cc|mm)$'], 344 ['include', '_ios\\.(cc|mm)$'],
342 ['include', '(^|/)ios/'], 345 ['include', '(^|/)ios/'],
343 ['include', '^base/l10n/'], 346 ['include', '^base/l10n/'],
344 ['include', '^base/layout'], 347 ['include', '^base/layout'],
345 ['include', '^base/resource/'], 348 ['include', '^base/resource/'],
346 ['include', '^base/ui_base_'], 349 ['include', '^base/ui_base_'],
347 ], 350 ],
348 'link_settings': { 351 'link_settings': {
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 'xcode_settings': { 723 'xcode_settings': {
721 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 724 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
722 }, 725 },
723 }], 726 }],
724 ], 727 ],
725 }, 728 },
726 ], 729 ],
727 }], 730 }],
728 ], 731 ],
729 } 732 }
OLDNEW
« build/all.gyp ('K') | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698