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

Side by Side Diff: gyp/android_deps.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 | « no previous file | gyp/expat.gyp » ('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 2015 Google Inc. 1 # Copyright 2015 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 # This GYP file stores the dependencies necessary to build Skia on the Android 6 # This GYP file stores the dependencies necessary to build Skia on the Android
7 # platform. The OS doesn't provide many stable libraries as part of the 7 # platform. The OS doesn't provide many stable libraries as part of the
8 # distribution so we have to build a few of them ourselves. 8 # distribution so we have to build a few of them ourselves.
9 # 9 #
10 # We tried adding this gyp file to the android directory at the root of 10 # We tried adding this gyp file to the android directory at the root of
(...skipping 13 matching lines...) Expand all
24 { 24 {
25 'includes': [ 25 'includes': [
26 '../platform_tools/android/gyp/dependencies.gypi', 26 '../platform_tools/android/gyp/dependencies.gypi',
27 ], 27 ],
28 }, { # else skia_android_framework 28 }, { # else skia_android_framework
29 'cflags': [ 29 'cflags': [
30 '-Wno-error' 30 '-Wno-error'
31 ], 31 ],
32 'targets': [ 32 'targets': [
33 { 33 {
34 'target_name': 'expat', 34 'target_name': 'expat_android',
35 'type': 'none', 35 'type': 'none',
36 'direct_dependent_settings': { 36 'direct_dependent_settings': {
37 'libraries' : [ 37 'libraries' : [
38 '-lexpat', 38 '-lexpat',
39 ], 39 ],
40 }, 40 },
41 }, 41 },
42 { 42 {
43 'target_name': 'png', 43 'target_name': 'png',
44 'type': 'none', 44 'type': 'none',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 }, 89 },
90 { 90 {
91 'target_name': 'cpu_features', 91 'target_name': 'cpu_features',
92 'type': 'none', 92 'type': 'none',
93 }, 93 },
94 ], 94 ],
95 } 95 }
96 ], 96 ],
97 ], 97 ],
98 } 98 }
OLDNEW
« no previous file with comments | « no previous file | gyp/expat.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698