OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'test/event_generator.h', | 94 'test/event_generator.h', |
95 'test/test_activation_client.cc', | 95 'test/test_activation_client.cc', |
96 'test/test_activation_client.h', | 96 'test/test_activation_client.h', |
97 'test/test_event_filter.cc', | 97 'test/test_event_filter.cc', |
98 'test/test_event_filter.h', | 98 'test/test_event_filter.h', |
99 'test/test_windows.cc', | 99 'test/test_windows.cc', |
100 'test/test_windows.h', | 100 'test/test_windows.h', |
101 'test/test_window_delegate.cc', | 101 'test/test_window_delegate.cc', |
102 'test/test_window_delegate.h', | 102 'test/test_window_delegate.h', |
103 ], | 103 ], |
104 'conditions': [ | |
105 ['use_webkit_compositor==0', { | |
106 'dependencies': [ | |
107 '../gfx/compositor/compositor.gyp:test_compositor', | |
108 ], | |
109 }], | |
110 ], | |
111 }, | 104 }, |
112 { | 105 { |
113 'target_name': 'aura_demo', | 106 'target_name': 'aura_demo', |
114 'type': 'executable', | 107 'type': 'executable', |
115 'dependencies': [ | 108 'dependencies': [ |
116 '../../base/base.gyp:base', | 109 '../../base/base.gyp:base', |
117 '../../base/base.gyp:base_i18n', | 110 '../../base/base.gyp:base_i18n', |
118 '../../skia/skia.gyp:skia', | 111 '../../skia/skia.gyp:skia', |
119 '../../third_party/icu/icu.gyp:icui18n', | 112 '../../third_party/icu/icu.gyp:icui18n', |
120 '../../third_party/icu/icu.gyp:icuuc', | 113 '../../third_party/icu/icu.gyp:icuuc', |
(...skipping 15 matching lines...) Expand all Loading... |
136 }, | 129 }, |
137 { | 130 { |
138 'target_name': 'aura_unittests', | 131 'target_name': 'aura_unittests', |
139 'type': 'executable', | 132 'type': 'executable', |
140 'dependencies': [ | 133 'dependencies': [ |
141 '../../base/base.gyp:test_support_base', | 134 '../../base/base.gyp:test_support_base', |
142 '../../chrome/chrome_resources.gyp:packed_resources', | 135 '../../chrome/chrome_resources.gyp:packed_resources', |
143 '../../skia/skia.gyp:skia', | 136 '../../skia/skia.gyp:skia', |
144 '../../testing/gtest.gyp:gtest', | 137 '../../testing/gtest.gyp:gtest', |
145 '../gfx/compositor/compositor.gyp:compositor_test_support', | 138 '../gfx/compositor/compositor.gyp:compositor_test_support', |
| 139 '../gfx/compositor/compositor.gyp:compositor', |
146 '../gfx/gl/gl.gyp:gl', | 140 '../gfx/gl/gl.gyp:gl', |
147 '../ui.gyp:gfx_resources', | 141 '../ui.gyp:gfx_resources', |
148 '../ui.gyp:ui', | 142 '../ui.gyp:ui', |
149 '../ui.gyp:ui_resources', | 143 '../ui.gyp:ui_resources', |
150 'test_support_aura', | 144 'test_support_aura', |
151 'aura', | 145 'aura', |
152 ], | 146 ], |
153 'include_dirs': [ | 147 'include_dirs': [ |
154 '..', | 148 '..', |
155 ], | 149 ], |
156 'sources': [ | 150 'sources': [ |
157 'gestures/gesture_recognizer_unittest.cc', | 151 'gestures/gesture_recognizer_unittest.cc', |
158 'test/run_all_unittests.cc', | 152 'test/run_all_unittests.cc', |
159 'test/test_suite.cc', | 153 'test/test_suite.cc', |
160 'test/test_suite.h', | 154 'test/test_suite.h', |
161 'root_window_unittest.cc', | 155 'root_window_unittest.cc', |
162 'event_filter_unittest.cc', | 156 'event_filter_unittest.cc', |
163 'event_unittest.cc', | 157 'event_unittest.cc', |
164 'window_unittest.cc', | 158 'window_unittest.cc', |
165 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 159 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
166 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 160 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
167 ], | 161 ], |
168 'conditions': [ | 162 'conditions': [ |
169 # osmesa GL implementation is used on linux. | 163 # osmesa GL implementation is used on linux. |
170 ['OS=="linux"', { | 164 ['OS=="linux"', { |
171 'dependencies': [ | 165 'dependencies': [ |
172 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 166 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
173 ], | 167 ], |
174 }], | 168 }], |
175 ['use_webkit_compositor==1', { | |
176 'dependencies': [ | |
177 '../gfx/compositor/compositor.gyp:compositor', | |
178 ], | |
179 }, { # use_webkit_compositor!=1 | |
180 'dependencies': [ | |
181 '../gfx/compositor/compositor.gyp:test_compositor', | |
182 ], | |
183 }], | |
184 ], | 169 ], |
185 }, | 170 }, |
186 ], | 171 ], |
187 } | 172 } |
OLD | NEW |