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

Side by Side Diff: base/base.gyp

Issue 7812009: Base: Switch base_i18n to be a separate dll (component build) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | « no previous file | base/base.gypi » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'base.gypi', 10 'base.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'base_i18n', 14 'target_name': 'base_i18n',
15 'type': 'static_library', 15 'type': '<(component)',
16 'dependencies': [ 16 'dependencies': [
17 'base', 17 'base',
18 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
18 '../third_party/icu/icu.gyp:icui18n', 19 '../third_party/icu/icu.gyp:icui18n',
19 '../third_party/icu/icu.gyp:icuuc', 20 '../third_party/icu/icu.gyp:icuuc',
20 ], 21 ],
21 'conditions': [ 22 'conditions': [
22 ['toolkit_uses_gtk==1', { 23 ['toolkit_uses_gtk==1', {
23 'dependencies': [ 24 'dependencies': [
24 # i18n/rtl.cc uses gtk 25 # i18n/rtl.cc uses gtk
25 '../build/linux/system.gyp:gtk', 26 '../build/linux/system.gyp:gtk',
26 ], 27 ],
27 }], 28 }],
28 ], 29 ],
29 'export_dependent_settings': [ 30 'export_dependent_settings': [
30 'base', 31 'base',
31 ], 32 ],
33 'defines': [
34 'BASE_I18N_IMPLEMENTATION',
35 ],
32 'sources': [ 36 'sources': [
37 'i18n/base_i18n_export.h',
33 'i18n/bidi_line_iterator.cc', 38 'i18n/bidi_line_iterator.cc',
34 'i18n/bidi_line_iterator.h', 39 'i18n/bidi_line_iterator.h',
35 'i18n/break_iterator.cc', 40 'i18n/break_iterator.cc',
36 'i18n/break_iterator.h', 41 'i18n/break_iterator.h',
37 'i18n/char_iterator.cc', 42 'i18n/char_iterator.cc',
38 'i18n/char_iterator.h', 43 'i18n/char_iterator.h',
39 'i18n/case_conversion.cc', 44 'i18n/case_conversion.cc',
40 'i18n/case_conversion.h', 45 'i18n/case_conversion.h',
41 'i18n/file_util_icu.cc', 46 'i18n/file_util_icu.cc',
42 'i18n/file_util_icu.h', 47 'i18n/file_util_icu.h',
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'msvs_settings': { 398 'msvs_settings': {
394 'VCLinkerTool': { 399 'VCLinkerTool': {
395 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 400 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
396 }, 401 },
397 }, 402 },
398 }, 403 },
399 ], 404 ],
400 }], 405 }],
401 ], 406 ],
402 } 407 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698