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

Side by Side Diff: icu_nacl.gyp

Issue 338063002: Temporary workaround to trigger a rebuild of libicudata_nacl on icu version update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu52/
Patch Set: Created 6 years, 6 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 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 'includes': [ 6 'includes': [
7 'icu.gypi', 7 'icu.gypi',
8 '../../native_client/build/untrusted.gypi', 8 '../../native_client/build/untrusted.gypi',
9 ], 9 ],
10 'target_defaults': { 10 'target_defaults': {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'target_name': 'icudata_nacl', 42 'target_name': 'icudata_nacl',
43 'type': 'none', 43 'type': 'none',
44 'variables': { 44 'variables': {
45 'nlib_target': 'libicudata_nacl.a', 45 'nlib_target': 'libicudata_nacl.a',
46 'build_glibc': 0, 46 'build_glibc': 0,
47 'build_newlib': 0, 47 'build_newlib': 0,
48 'build_pnacl_newlib': 1, 48 'build_pnacl_newlib': 1,
49 }, 49 },
50 'sources': [ 50 'sources': [
51 'source/stubdata/stubdata.c', 51 'source/stubdata/stubdata.c',
52 # Temporary work around for an incremental build NOT rebuilding
53 # icudata_nacl after an ICU version change.
54 # TODO(jungshik): Remove it once a fix for bug 384752 is in.
55 'source/common/unicode/uvernum.h',
52 ], 56 ],
53 'dependencies': [ 57 'dependencies': [
54 '../../native_client/tools.gyp:prep_toolchain', 58 '../../native_client/tools.gyp:prep_toolchain',
55 ], 59 ],
56 }, 60 },
57 { 61 {
58 'target_name': 'icui18n_nacl', 62 'target_name': 'icui18n_nacl',
59 'type': 'none', 63 'type': 'none',
60 'variables': { 64 'variables': {
61 'nlib_target': 'libicui18n_nacl.a', 65 'nlib_target': 'libicui18n_nacl.a',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'include_dirs': [ 106 'include_dirs': [
103 'source/common', 107 'source/common',
104 ], 108 ],
105 'defines': [ 109 'defines': [
106 'U_STATIC_IMPLEMENTATION', 110 'U_STATIC_IMPLEMENTATION',
107 ], 111 ],
108 }, 112 },
109 }, 113 },
110 ], 114 ],
111 } 115 }
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