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

Side by Side Diff: gyp/utils.gyp

Issue 1536013003: Move SkAndroidSDKCanvas to tools and ensure that it is built on all Android builds (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years 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/tools.gyp ('k') | src/utils/android/SkAndroidSDKCanvas.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 # 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',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 ], 98 ],
99 }], 99 }],
100 ], 100 ],
101 'direct_dependent_settings': { 101 'direct_dependent_settings': {
102 'include_dirs': [ 102 'include_dirs': [
103 '../include/utils', 103 '../include/utils',
104 '../src/utils', 104 '../src/utils',
105 ], 105 ],
106 }, 106 },
107 }, 107 },
108 {
109 'target_name': 'android_utils',
110 'product_name': 'skia_android_utils',
111 'type': 'static_library',
112 'standalone_static_library': 1,
113 'dependencies': [
114 'core.gyp:*',
115 ],
116 'sources': [
117 '../src/utils/android/SkAndroidSDKCanvas.h',
118 '../src/utils/android/SkAndroidSDKCanvas.cpp',
119 ],
120 'direct_dependent_settings': {
121 'include_dirs': [
122 '../src/utils/android',
123 ],
124 },
125 },
126 ], 108 ],
127 } 109 }
OLDNEW
« no previous file with comments | « gyp/tools.gyp ('k') | src/utils/android/SkAndroidSDKCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698