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

Side by Side Diff: gyp/expat.gyp

Issue 2155713004: Speculatively fix Android automerger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 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
« no previous file with comments | « gyp/android_deps.gyp ('k') | 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 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # Build expat from source. 6 # Build expat from source.
7 7
8 { 8 {
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'expat', 11 'target_name': 'expat',
12 'type': 'none', 12 'type': 'none',
13 'conditions': [ 13 'conditions': [
14 [ 'skia_android_framework', { 14 [ 'skia_android_framework', {
15 'dependencies': [ 'android_deps.gyp:expat' ], 15 'dependencies': [ 'android_deps.gyp:expat_android' ],
16 'export_dependent_settings': [ 'android_deps.gyp:expat' ], 16 'export_dependent_settings': [ 'android_deps.gyp:expat_android' ],
17 },{ 17 },{
18 'dependencies': [ 'expat.gyp:expat_static' ], 18 'dependencies': [ 'expat.gyp:expat_static' ],
19 'export_dependent_settings': [ 'expat.gyp:expat_static' ], 19 'export_dependent_settings': [ 'expat.gyp:expat_static' ],
20 }] 20 }]
21 ] 21 ]
22 }, 22 },
23 { 23 {
24 'target_name': 'expat_static', 24 'target_name': 'expat_static',
25 'type': 'static_library', 25 'type': 'static_library',
26 'cflags': [ '-Wno-missing-field-initializers' ], 26 'cflags': [ '-Wno-missing-field-initializers' ],
(...skipping 14 matching lines...) Expand all
41 'direct_dependent_settings': { 41 'direct_dependent_settings': {
42 'include_dirs': [ 42 'include_dirs': [
43 '../third_party/externals/expat/lib', 43 '../third_party/externals/expat/lib',
44 ], 44 ],
45 'defines': [ 45 'defines': [
46 'XML_STATIC', # Tell dependants to expect static linkage. 46 'XML_STATIC', # Tell dependants to expect static linkage.
47 ], 47 ],
48 }, 48 },
49 }] 49 }]
50 } 50 }
OLDNEW
« no previous file with comments | « gyp/android_deps.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698