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

Side by Side Diff: apps/apps.gypi

Issue 269363002: ui: Move strings translations out of ui/base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « BUILD.gn ('k') | apps/shell/app_shell.gyp » ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'apps', 8 'target_name': 'apps',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 ], 93 ],
94 ['enable_extensions==0', 94 ['enable_extensions==0',
95 { 95 {
96 'sources/': [ 96 'sources/': [
97 ['exclude', '^apps/'], 97 ['exclude', '^apps/'],
98 ], 98 ],
99 } 99 }
100 ], 100 ],
101 ['toolkit_views==1', { 101 ['toolkit_views==1', {
102 'dependencies': [ 102 'dependencies': [
103 '../ui/base/strings/ui_strings.gyp:ui_strings', 103 '../ui/strings/ui_strings.gyp:ui_strings',
104 '../ui/views/views.gyp:views', 104 '../ui/views/views.gyp:views',
105 ], 105 ],
106 }, { # toolkit_views==0 106 }, { # toolkit_views==0
107 'sources/': [ 107 'sources/': [
108 ['exclude', 'ui/views/'], 108 ['exclude', 'ui/views/'],
109 ], 109 ],
110 }], 110 }],
111 ], 111 ],
112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
113 'msvs_disabled_warnings': [ 4267, ], 113 'msvs_disabled_warnings': [ 4267, ],
114 }, 114 },
115 ], # targets 115 ], # targets
116 } 116 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | apps/shell/app_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698