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

Side by Side Diff: icu.gyp

Issue 6474038: Rename the variable to not end in "_file" since that triggers gyp relative... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu46/
Patch Set: Created 9 years, 10 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 | 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 (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 'use_system_icu%': 0, 7 'use_system_icu%': 0,
8 'icu_use_data_file%': 0, 8 'icu_use_data_file_flag%': 0,
9 }, 9 },
10 'conditions': [ 10 'conditions': [
11 ['use_system_icu==0', { 11 ['use_system_icu==0', {
12 'target_defaults': { 12 'target_defaults': {
13 'defines': [ 13 'defines': [
14 'U_USING_ICU_NAMESPACE=0', 14 'U_USING_ICU_NAMESPACE=0',
15 ], 15 ],
16 'conditions': [ 16 'conditions': [
17 ['OS!="win" or component=="static_library"', { 17 ['OS!="win" or component=="static_library"', {
18 'defines': [ 18 'defines': [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 }], 56 }],
57 [ 'OS != "linux" or chromeos == 1', { 57 [ 'OS != "linux" or chromeos == 1', {
58 'sources!': ['linux/icudt46l_dat.S'], 58 'sources!': ['linux/icudt46l_dat.S'],
59 }], 59 }],
60 [ 'OS != "mac"', { 60 [ 'OS != "mac"', {
61 'sources!': ['mac/icudt46l_dat.S'], 61 'sources!': ['mac/icudt46l_dat.S'],
62 }], 62 }],
63 [ 'chromeos != 1', { 63 [ 'chromeos != 1', {
64 'sources!': ['cros/icudt46l_dat.S'], 64 'sources!': ['cros/icudt46l_dat.S'],
65 }], 65 }],
66 [ 'OS != "win" and icu_use_data_file', { 66 [ 'OS != "win" and icu_use_data_file_flag', {
67 # Remove any assembly data file. 67 # Remove any assembly data file.
68 'sources/': [['exclude', 'icudt46l_dat']], 68 'sources/': [['exclude', 'icudt46l_dat']],
69 # Compile in the stub data symbol. 69 # Compile in the stub data symbol.
70 'sources': ['source/stubdata/stubdata.c'], 70 'sources': ['source/stubdata/stubdata.c'],
71 # Make sure any binary depending on this gets the data file. 71 # Make sure any binary depending on this gets the data file.
72 'link_settings': { 72 'link_settings': {
73 'target_conditions': [ 73 'target_conditions': [
74 ['OS == "mac" and _mac_bundle', { 74 ['OS == "mac" and _mac_bundle', {
75 'mac_bundle_resources': [ 75 'mac_bundle_resources': [
76 'source/data/in/icudt46l.dat', 76 'source/data/in/icudt46l.dat',
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 { 509 {
510 'target_name': 'icuuc', 510 'target_name': 'icuuc',
511 'type': 'none', 511 'type': 'none',
512 'dependencies': ['system_icu'], 512 'dependencies': ['system_icu'],
513 'export_dependent_settings': ['system_icu'], 513 'export_dependent_settings': ['system_icu'],
514 }, 514 },
515 ], 515 ],
516 }], 516 }],
517 ], 517 ],
518 } 518 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698