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

Side by Side Diff: gyp/codec_android.gyp

Issue 1766413002: Use a smart pointer for SkColorSpace factories (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix spacing Created 4 years, 9 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 | include/codec/SkCodec.h » ('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 # Copyright 2015 Google Inc. 5 # Copyright 2015 Google Inc.
6 # 6 #
7 # Use of this source code is governed by a BSD-style license that can be 7 # Use of this source code is governed by a BSD-style license that can be
8 # found in the LICENSE file. 8 # found in the LICENSE file.
9 9
10 # GYP file for android specific codecs. 10 # GYP file for android specific codecs.
11 { 11 {
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'codec_android', 14 'target_name': 'codec_android',
15 'product_name': 'skia_codec_android', 15 'product_name': 'skia_codec_android',
16 'type': 'static_library', 16 'type': 'static_library',
17 'standalone_static_library': 1, 17 'standalone_static_library': 1,
18 'dependencies': [ 18 'dependencies': [
19 'codec.gyp:codec', 19 'codec.gyp:codec',
20 ], 20 ],
21 'include_dirs': [ 21 'include_dirs': [
22 '../include/android', 22 '../include/android',
23 '../include/config', 23 '../include/config',
24 '../include/core', 24 '../include/core',
25 '../include/private', 25 '../include/private',
26 '../src/android', 26 '../src/android',
27 '../src/codec', 27 '../src/codec',
28 '../src/core',
29 ], 28 ],
30 'sources': [ 29 'sources': [
31 '../src/android/SkBitmapRegionCanvas.cpp', 30 '../src/android/SkBitmapRegionCanvas.cpp',
32 '../src/android/SkBitmapRegionCodec.cpp', 31 '../src/android/SkBitmapRegionCodec.cpp',
33 '../src/android/SkBitmapRegionDecoder.cpp', 32 '../src/android/SkBitmapRegionDecoder.cpp',
34 ], 33 ],
35 'direct_dependent_settings': { 34 'direct_dependent_settings': {
36 'include_dirs': [ 35 'include_dirs': [
37 '../include/android', 36 '../include/android',
38 ], 37 ],
39 }, 38 },
40 }, 39 },
41 ], 40 ],
42 } 41 }
OLDNEW
« no previous file with comments | « no previous file | include/codec/SkCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698