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

Unified Diff: ui/gl/gl.gyp

Issue 48213004: Remove unnecessary dependencies on "ui" target from some other targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gl_surface_win.cc needs dwmapi.dll Created 7 years, 2 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 | « ui/compositor/compositor.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl.gyp
diff --git a/ui/gl/gl.gyp b/ui/gl/gl.gyp
index 1b58ef9aebffb99500f003e799f91dd8a6ef4383..28cbaa38140991c48ddfcbe923af97fe97f7cfe5 100644
--- a/ui/gl/gl.gyp
+++ b/ui/gl/gl.gyp
@@ -19,7 +19,6 @@
'<(DEPTH)/skia/skia.gyp:skia',
'<(DEPTH)/third_party/mesa/mesa.gyp:mesa_headers',
'<(DEPTH)/ui/gfx/gfx.gyp:gfx',
- '<(DEPTH)/ui/ui.gyp:ui',
],
'variables': {
'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl',
@@ -235,6 +234,21 @@
'<(gl_binding_output_dir)/gl_bindings_autogen_wgl.cc',
'<(gl_binding_output_dir)/gl_bindings_autogen_wgl.h',
],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'DelayLoadDLLs': [
+ 'dwmapi.dll',
+ ],
+ 'AdditionalDependencies': [
+ 'dwmapi.lib',
+ ],
+ },
+ },
+ 'link_settings': {
+ 'libraries': [
+ '-ldwmapi.lib',
+ ],
+ },
}],
['OS=="mac"', {
'sources': [
« no previous file with comments | « ui/compositor/compositor.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698