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

Unified Diff: cc/cc.gyp

Issue 131893003: Skeleton surface interfaces in cc/surfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add base and ui/gfx deps to fix win/mac component link Created 6 years, 11 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 | « cc/DEPS ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/cc.gyp
diff --git a/cc/cc.gyp b/cc/cc.gyp
index c9196db1c8843c607c4cb00f7c6f3ebf74c58d52..f025568e5b7165e4722a6add5c8675889128c6fe 100644
--- a/cc/cc.gyp
+++ b/cc/cc.gyp
@@ -21,6 +21,9 @@
'<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
'<(DEPTH)/ui/gl/gl.gyp:gl',
],
+ 'export_dependent_settings': [
+ '<(DEPTH)/skia/skia.gyp:skia',
+ ],
'defines': [
'CC_IMPLEMENTATION=1',
],
@@ -442,5 +445,26 @@
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [ 4267, ],
},
+ {
+ 'target_name': 'cc_surfaces',
+ 'type': '<(component)',
+ 'dependencies': [
+ 'cc',
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
+ '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
+ ],
+ 'defines': [
+ 'CC_SURFACES_IMPLEMENTATION=1',
+ ],
+ 'sources': [
+ 'surfaces/surface.cc',
+ 'surfaces/surface.h',
+ 'surfaces/surface_manager.cc',
+ 'surfaces/surface_manager.h',
+ 'surfaces/surfaces_export.h',
+ ],
+ },
],
}
« no previous file with comments | « cc/DEPS ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698