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

Side by Side Diff: ui/gfx/gl/gl.gyp

Issue 7082017: Files that are in src/ui/base should be compiled into libui_base.a. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: files Created 9 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'sources/': [ 7 'sources/': [
8 ['exclude', '/(cocoa|gtk|win)/'], 8 ['exclude', '/(cocoa|gtk|win)/'],
9 ['exclude', '_(cocoa|gtk|linux|mac|posix|win|x)\\.(cc|mm?)$'], 9 ['exclude', '_(cocoa|gtk|linux|mac|posix|win|x)\\.(cc|mm?)$'],
10 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], 10 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'],
(...skipping 18 matching lines...) Expand all
29 ['include', '/win/'], 29 ['include', '/win/'],
30 ['include', '/win_[^/]*\\.cc$'], 30 ['include', '/win_[^/]*\\.cc$'],
31 ]}], 31 ]}],
32 ], 32 ],
33 }, 33 },
34 'targets': [ 34 'targets': [
35 { 35 {
36 'target_name': 'gl', 36 'target_name': 'gl',
37 'type': 'static_library', 37 'type': 'static_library',
38 'dependencies': [ 38 'dependencies': [
39 '<(DEPTH)/app/app.gyp:app_base',
40 '<(DEPTH)/base/base.gyp:base', 39 '<(DEPTH)/base/base.gyp:base',
41 '<(DEPTH)/skia/skia.gyp:skia', 40 '<(DEPTH)/skia/skia.gyp:skia',
41 '<(DEPTH)/ui/ui.gyp:ui_base',
42 '<(DEPTH)/ui/ui.gyp:ui_gfx', 42 '<(DEPTH)/ui/ui.gyp:ui_gfx',
43 ], 43 ],
44 'variables': { 44 'variables': {
45 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gl', 45 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gl',
46 }, 46 },
47 'include_dirs': [ 47 'include_dirs': [
48 '<(DEPTH)/third_party/mesa/MesaLib/include', 48 '<(DEPTH)/third_party/mesa/MesaLib/include',
49 '<(gl_binding_output_dir)', 49 '<(gl_binding_output_dir)',
50 ], 50 ],
51 'direct_dependent_settings': { 51 'direct_dependent_settings': {
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'link_settings': { 173 'link_settings': {
174 'libraries': [ 174 'libraries': [
175 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 175 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
176 ], 176 ],
177 }, 177 },
178 }], 178 }],
179 ], 179 ],
180 }, 180 },
181 ], 181 ],
182 } 182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698