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

Side by Side Diff: ui/base/strings/ui_strings.gyp

Issue 152543005: Introduce a mock ui_unittests Framework for loading resources. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix iOS with an explainer Created 6 years, 9 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 | « ui/base/l10n/time_format_unittest.cc ('k') | ui/base/test/framework-Info.plist » ('j') | 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 'grit_base_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui', 8 'grit_base_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 20 matching lines...) Expand all
31 ], 31 ],
32 'direct_dependent_settings': { 32 'direct_dependent_settings': {
33 'include_dirs': [ 33 'include_dirs': [
34 '<(grit_base_out_dir)/app_locale_settings', 34 '<(grit_base_out_dir)/app_locale_settings',
35 '<(grit_base_out_dir)/ui_strings', 35 '<(grit_base_out_dir)/ui_strings',
36 ], 36 ],
37 }, 37 },
38 }, 38 },
39 ], 39 ],
40 'conditions': [ 40 'conditions': [
41 ['os_posix == 1 and OS != "mac"', { 41 ['OS != "mac"', {
tapted 2014/02/28 08:12:07 note that this now builds the target on windows, s
42 'targets': [{ 42 'targets': [{
43 'target_name': 'ui_unittest_strings', 43 'target_name': 'ui_unittest_strings',
44 'type': 'none', 44 'type': 'none',
45 'dependencies': [ 45 'dependencies': [
46 'ui_strings', 46 'ui_strings',
47 ], 47 ],
48 'variables': { 48 'variables': {
49 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', 49 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py',
50 'conditions': [ 50 'conditions': [
51 ['OS == "ios"', { 51 ['OS == "ios"', {
(...skipping 28 matching lines...) Expand all
80 'destination': '<(PRODUCT_DIR)/ui_unittests_strings', 80 'destination': '<(PRODUCT_DIR)/ui_unittests_strings',
81 'files': [ 81 'files': [
82 '<(grit_base_out_dir)/ui_resources/ui_resources_100_percent.pak', 82 '<(grit_base_out_dir)/ui_resources/ui_resources_100_percent.pak',
83 ], 83 ],
84 }, 84 },
85 ], 85 ],
86 }], 86 }],
87 }], 87 }],
88 ], 88 ],
89 } 89 }
OLDNEW
« no previous file with comments | « ui/base/l10n/time_format_unittest.cc ('k') | ui/base/test/framework-Info.plist » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698