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

Unified Diff: ui/gl/init/gl_init.gyp

Issue 2024953002: Move GL one-off initialization code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split_x11
Patch Set: Delete GLInitializer class. Created 4 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 | « ui/gl/init/gl_factory.cc ('k') | ui/gl/init/gl_initializer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/init/gl_init.gyp
diff --git a/ui/gl/init/gl_init.gyp b/ui/gl/init/gl_init.gyp
index ba65c016268742c558dbe3276cdd0a9896dd44ae..2ce8e55aa42abbe77998ea24220a4f0e08e0b0f8 100644
--- a/ui/gl/init/gl_init.gyp
+++ b/ui/gl/init/gl_init.gyp
@@ -21,10 +21,25 @@
'GL_INIT_IMPLEMENTATION',
],
'sources': [
+ 'gl_initializer.h',
+ 'gl_initializer_android.cc',
+ 'gl_initializer_mac.cc',
+ 'gl_initializer_ozone.cc',
+ 'gl_initializer_win.cc',
+ 'gl_initializer_x11.cc',
'gl_factory.cc',
'gl_factory.h',
'gl_init_export.h',
],
+ 'conditions': [
+ ['OS=="mac"', {
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
+ ],
+ },
+ }],
+ ],
},
],
}
« no previous file with comments | « ui/gl/init/gl_factory.cc ('k') | ui/gl/init/gl_initializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698