OLD | NEW |
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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'gl', | 12 'target_name': 'gl', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
16 '<(DEPTH)/skia/skia.gyp:skia', | 16 '<(DEPTH)/skia/skia.gyp:skia', |
17 '<(DEPTH)/ui/ui.gyp:ui_base', | 17 '<(DEPTH)/ui/ui.gyp:ui', |
18 '<(DEPTH)/ui/ui.gyp:ui_gfx', | |
19 ], | 18 ], |
20 'variables': { | 19 'variables': { |
21 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gl', | 20 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gl', |
22 }, | 21 }, |
23 'include_dirs': [ | 22 'include_dirs': [ |
24 '<(DEPTH)/third_party/mesa/MesaLib/include', | 23 '<(DEPTH)/third_party/mesa/MesaLib/include', |
25 '<(gl_binding_output_dir)', | 24 '<(gl_binding_output_dir)', |
26 ], | 25 ], |
27 'direct_dependent_settings': { | 26 'direct_dependent_settings': { |
28 'include_dirs': [ | 27 'include_dirs': [ |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'link_settings': { | 150 'link_settings': { |
152 'libraries': [ | 151 'libraries': [ |
153 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 152 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
154 ], | 153 ], |
155 }, | 154 }, |
156 }], | 155 }], |
157 ], | 156 ], |
158 }, | 157 }, |
159 ], | 158 ], |
160 } | 159 } |
OLD | NEW |