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

Side by Side Diff: ui/ui_unittests.gyp

Issue 497503004: Add NSString category for providing iOS6-style string drawing APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: TIL export_dependent_settings Created 6 years, 4 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 | Annotate | Revision Log
« ui/ios/NSString+CrStringDrawing.mm ('K') | « ui/ios/ios.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'base/webui/web_ui_util_unittest.cc', 76 'base/webui/web_ui_util_unittest.cc',
77 'base/x/selection_requestor_unittest.cc', 77 'base/x/selection_requestor_unittest.cc',
78 ], 78 ],
79 'include_dirs': [ 79 'include_dirs': [
80 '../', 80 '../',
81 ], 81 ],
82 'conditions': [ 82 'conditions': [
83 ['OS!="ios"', { 83 ['OS!="ios"', {
84 'sources' : ['<@(_all_sources)'], 84 'sources' : ['<@(_all_sources)'],
85 }, { # OS=="ios" 85 }, { # OS=="ios"
86 'dependencies' : [
87 'ios/ios.gyp:ios',
88 ],
86 'sources' : [ 89 'sources' : [
87 '<@(_common_sources)', 90 '<@(_common_sources)',
91 'ios/NSString+CrStringDrawing_unittest.mm',
88 ], 92 ],
89 # The ResourceBundle unittest expects a locale.pak file to exist in 93 # The ResourceBundle unittest expects a locale.pak file to exist in
90 # the bundle for English-US. Copy it in from where it was generated 94 # the bundle for English-US. Copy it in from where it was generated
91 # by ui_resources.gyp:ui_test_pak. 95 # by ui_resources.gyp:ui_test_pak.
92 'mac_bundle_resources': [ 96 'mac_bundle_resources': [
93 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', 97 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak',
94 ], 98 ],
95 'actions': [ 99 'actions': [
96 { 100 {
97 'action_name': 'copy_test_data', 101 'action_name': 'copy_test_data',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 ], 262 ],
259 'variables': { 263 'variables': {
260 'test_suite_name': 'ui_unittests', 264 'test_suite_name': 'ui_unittests',
261 }, 265 },
262 'includes': [ '../build/apk_test.gypi' ], 266 'includes': [ '../build/apk_test.gypi' ],
263 }, 267 },
264 ], 268 ],
265 }], 269 }],
266 ], 270 ],
267 } 271 }
OLDNEW
« ui/ios/NSString+CrStringDrawing.mm ('K') | « ui/ios/ios.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698