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

Side by Side Diff: gyp/utils.gyp

Issue 1288963002: Provides multiple implementations of Android's SkBitmapRegionDecoder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Acknowledged a subtle bug in the test Created 5 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
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 # Gyp for utils. 5 # Gyp for utils.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'utils', 9 'target_name': 'utils',
10 'product_name': 'skia_utils', 10 'product_name': 'skia_utils',
11 'type': 'static_library', 11 'type': 'static_library',
12 'standalone_static_library': 1, 12 'standalone_static_library': 1,
13 'dependencies': [ 13 'dependencies': [
14 'core.gyp:*', 14 'core.gyp:*',
15 'etc1.gyp:libetc1', 15 'etc1.gyp:libetc1',
16 ], 16 ],
17 'includes': [ 17 'includes': [
18 'utils.gypi', 18 'utils.gypi',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '../include/codec',
21 '../include/effects', 22 '../include/effects',
22 '../include/gpu', 23 '../include/gpu',
23 '../include/images', 24 '../include/images',
24 '../include/pathops', 25 '../include/pathops',
25 '../include/pipe', 26 '../include/pipe',
26 '../include/private', 27 '../include/private',
27 '../include/utils', 28 '../include/utils',
28 '../include/utils/mac', 29 '../include/utils/mac',
29 '../include/utils/unix', 30 '../include/utils/unix',
30 '../include/utils/win', 31 '../include/utils/win',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 '../src/utils/android/SkHwuiRenderer.cpp', 131 '../src/utils/android/SkHwuiRenderer.cpp',
131 ], 132 ],
132 'direct_dependent_settings': { 133 'direct_dependent_settings': {
133 'include_dirs': [ 134 'include_dirs': [
134 '../src/utils/android', 135 '../src/utils/android',
135 ], 136 ],
136 }, 137 },
137 }, 138 },
138 ], 139 ],
139 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698