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

Unified Diff: gyp/sk_tool_utils.gyp

Issue 348623006: Add GYP target for sk_tool_utils.* component. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/sk_tool_utils.gyp
diff --git a/gyp/sk_tool_utils.gyp b/gyp/sk_tool_utils.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..26c9e7d15aef1280fe6ad256ea23bd4b77939292
--- /dev/null
+++ b/gyp/sk_tool_utils.gyp
@@ -0,0 +1,24 @@
+# Copyright 2014 Google Inc.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'sk_tool_utils',
mtklein 2014/06/20 01:05:24 Can this also not go in tools.gyp?
tfarina 2014/06/20 02:37:37 No, it creates a circular dependency. tools.gyp al
+ 'type': 'static_library',
+ 'sources': [
+ '../tools/sk_tool_utils.cpp',
+ '../tools/sk_tool_utils.h',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../tools/',
+ ],
+ },
+ },
+ ]
+}
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698