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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'demo/demo_main.cc', | 103 'demo/demo_main.cc', |
104 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 104 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
105 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 105 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
106 ], | 106 ], |
107 }, | 107 }, |
108 { | 108 { |
109 'target_name': 'aura_unittests', | 109 'target_name': 'aura_unittests', |
110 'type': 'executable', | 110 'type': 'executable', |
111 'dependencies': [ | 111 'dependencies': [ |
112 '../../base/base.gyp:test_support_base', | 112 '../../base/base.gyp:test_support_base', |
113 '../../chrome/chrome_resources.gyp:packed_resources', | |
114 '../../skia/skia.gyp:skia', | 113 '../../skia/skia.gyp:skia', |
115 '../../testing/gtest.gyp:gtest', | 114 '../../testing/gtest.gyp:gtest', |
116 '../gfx/compositor/compositor.gyp:compositor_test_support', | 115 '../gfx/compositor/compositor.gyp:compositor_test_support', |
117 '../gfx/compositor/compositor.gyp:test_compositor', | 116 '../gfx/compositor/compositor.gyp:test_compositor', |
118 '../gfx/gl/gl.gyp:gl', | 117 '../gfx/gl/gl.gyp:gl', |
119 '../ui.gyp:gfx_resources', | 118 '../ui.gyp:gfx_resources', |
120 '../ui.gyp:ui', | 119 '../ui.gyp:ui', |
121 '../ui.gyp:ui_resources', | 120 '../ui.gyp:ui_resources', |
122 'test_support_aura', | 121 'test_support_aura', |
123 'aura', | 122 'aura', |
(...skipping 13 matching lines...) Expand all Loading... |
137 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 136 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
138 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 137 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
139 ], | 138 ], |
140 # osmesa GL implementation is used on linux. | 139 # osmesa GL implementation is used on linux. |
141 'conditions': [ | 140 'conditions': [ |
142 ['OS=="linux"', { | 141 ['OS=="linux"', { |
143 'dependencies': [ | 142 'dependencies': [ |
144 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 143 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
145 ], | 144 ], |
146 }], | 145 }], |
| 146 ['OS!="mac"', { |
| 147 'dependencies': [ |
| 148 '../../chrome/chrome.gyp:packed_resources', |
| 149 ], |
| 150 }], |
147 ], | 151 ], |
148 }, | 152 }, |
149 ], | 153 ], |
150 } | 154 } |
OLD | NEW |