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

Unified Diff: gyp/utils.gyp

Issue 1021823003: Add utils/android/SkAndroidSDKCanvas (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Derek's review, break into new gypi, ask Mike for gyp review Created 5 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 side-by-side diff with in-line comments
Download patch
Index: gyp/utils.gyp
diff --git a/gyp/utils.gyp b/gyp/utils.gyp
index 19816f88e4e6ef5a7ef05afab2af8f053241e4b2..2f184c559badc6823dd13157aad2412013ca27fa 100644
--- a/gyp/utils.gyp
+++ b/gyp/utils.gyp
@@ -124,5 +124,30 @@
],
},
},
+ {
+ 'target_name': 'android_utils',
+ 'product_name': 'skia_android_utils',
+ 'type': 'static_library',
+ 'standalone_static_library': 1,
+ 'dependencies': [
+ 'core.gyp:*',
+ ],
+ 'includes': [
+ 'android_utils.gypi',
mtklein 2015/03/23 16:47:01 Unless you're planning on having these built into
+ ],
+ 'include_dirs': [
+ '../include/core',
+ '../include/utils/android',
+ '../src/core',
+ ],
+ 'sources': [
+ 'android_utils.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../include/utils/android',
mtklein 2015/03/23 17:49:02 Don't you want to keep this, switched over to '../
tomhudson 2015/03/23 18:06:27 Done.
+ ],
+ },
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698