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

Side by Side Diff: ui/base/ui_base.gyp

Issue 1220793010: [ui/base;css] adding string template expression replacement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed string16 versions of template expansions Created 5 years, 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'resource/resource_bundle.h', 263 'resource/resource_bundle.h',
264 'resource/resource_bundle_android.cc', 264 'resource/resource_bundle_android.cc',
265 'resource/resource_bundle_auralinux.cc', 265 'resource/resource_bundle_auralinux.cc',
266 'resource/resource_bundle_ios.mm', 266 'resource/resource_bundle_ios.mm',
267 'resource/resource_bundle_mac.mm', 267 'resource/resource_bundle_mac.mm',
268 'resource/resource_bundle_win.cc', 268 'resource/resource_bundle_win.cc',
269 'resource/resource_bundle_win.h', 269 'resource/resource_bundle_win.h',
270 'resource/resource_data_dll_win.cc', 270 'resource/resource_data_dll_win.cc',
271 'resource/resource_data_dll_win.h', 271 'resource/resource_data_dll_win.h',
272 'resource/resource_handle.h', 272 'resource/resource_handle.h',
273 'template_expressions.cc',
274 'template_expressions.h',
273 'text/bytes_formatting.cc', 275 'text/bytes_formatting.cc',
274 'text/bytes_formatting.h', 276 'text/bytes_formatting.h',
275 'theme_provider.cc', 277 'theme_provider.cc',
276 'theme_provider.h', 278 'theme_provider.h',
277 'touch/selection_bound.cc', 279 'touch/selection_bound.cc',
278 'touch/selection_bound.h', 280 'touch/selection_bound.h',
279 'touch/touch_device.cc', 281 'touch/touch_device.cc',
280 'touch/touch_device.h', 282 'touch/touch_device.h',
281 'touch/touch_device_android.cc', 283 'touch/touch_device_android.cc',
282 'touch/touch_device_linux.cc', 284 'touch/touch_device_linux.cc',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 ['OS=="ios"', { 362 ['OS=="ios"', {
361 # iOS only uses a subset of UI. 363 # iOS only uses a subset of UI.
362 'sources/': [ 364 'sources/': [
363 ['exclude', '\\.(cc|mm)$'], 365 ['exclude', '\\.(cc|mm)$'],
364 ['include', '_ios\\.(cc|mm)$'], 366 ['include', '_ios\\.(cc|mm)$'],
365 ['include', '(^|/)ios/'], 367 ['include', '(^|/)ios/'],
366 ['include', '^l10n/'], 368 ['include', '^l10n/'],
367 ['include', '^layout'], 369 ['include', '^layout'],
368 ['include', '^page_transition_type'], 370 ['include', '^page_transition_type'],
369 ['include', '^resource/'], 371 ['include', '^resource/'],
372 ['include', 'template_expressions.cc'],
370 ['include', '^ui_base_'], 373 ['include', '^ui_base_'],
371 ['include', '^webui/'], 374 ['include', '^webui/'],
372 ['include', '^window_open_disposition\\.cc'], 375 ['include', '^window_open_disposition\\.cc'],
373 ], 376 ],
374 'link_settings': { 377 'link_settings': {
375 'libraries': [ 378 'libraries': [
376 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 379 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
377 ], 380 ],
378 }, 381 },
379 }], 382 }],
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 ], 714 ],
712 'variables': { 715 'variables': {
713 'jni_gen_package': 'ui', 716 'jni_gen_package': 'ui',
714 }, 717 },
715 'includes': [ '../../build/jni_generator.gypi' ], 718 'includes': [ '../../build/jni_generator.gypi' ],
716 }, 719 },
717 ], 720 ],
718 }], 721 }],
719 ], 722 ],
720 } 723 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698