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

Side by Side Diff: gyp/effects.gyp

Issue 1645093002: Move SkPixelXorXfermode.h to include/client/android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add new include dir to android_framgework_lib.gyp Created 4 years, 10 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_framework_lib.gyp ('k') | gyp/effects.gypi » ('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 # Gyp file for effects 5 # Gyp file for effects
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'effects', 9 'target_name': 'effects',
10 'product_name': 'skia_effects', 10 'product_name': 'skia_effects',
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 'images.gyp:*', 15 'images.gyp:*',
16 'utils.gyp:utils', 16 'utils.gyp:utils',
17 ], 17 ],
18 'includes': [ 18 'includes': [
19 'effects.gypi', 19 'effects.gypi',
20 ], 20 ],
21 'include_dirs': [ 21 'include_dirs': [
22 '../include/effects', 22 '../include/effects',
23 '../include/client/android',
23 '../include/private', 24 '../include/private',
24 '../src/effects', 25 '../src/effects',
25 '../src/opts', 26 '../src/opts',
26 '../src/core', 27 '../src/core',
27 ], 28 ],
28 'direct_dependent_settings': { 29 'direct_dependent_settings': {
29 'include_dirs': [ 30 'include_dirs': [
30 '../include/effects', 31 '../include/effects',
djsollen 2016/01/28 21:08:08 I think if you add it here you don't need to add i
31 ], 32 ],
32 }, 33 },
33 'sources': [ 34 'sources': [
34 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build). 35 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
35 ], 36 ],
36 'conditions': [ 37 'conditions': [
37 ['skia_gpu == 1', { 38 ['skia_gpu == 1', {
38 'include_dirs': [ 39 'include_dirs': [
39 '../include/gpu', 40 '../include/gpu',
40 '../src/gpu', 41 '../src/gpu',
41 ], 42 ],
42 }], 43 }],
43 ], 44 ],
44 }, 45 },
45 ], 46 ],
46 } 47 }
OLDNEW
« no previous file with comments | « gyp/android_framework_lib.gyp ('k') | gyp/effects.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698