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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'window_observer.h', | 53 'window_observer.h', |
54 'window_types.h', | 54 'window_types.h', |
55 ], | 55 ], |
56 }, | 56 }, |
57 { | 57 { |
58 'target_name': 'test_support_aura', | 58 'target_name': 'test_support_aura', |
59 'type': 'static_library', | 59 'type': 'static_library', |
60 'dependencies': [ | 60 'dependencies': [ |
61 '../../skia/skia.gyp:skia', | 61 '../../skia/skia.gyp:skia', |
62 '../../testing/gtest.gyp:gtest', | 62 '../../testing/gtest.gyp:gtest', |
63 '../gfx/compositor/compositor.gyp:test_compositor', | |
64 '../ui.gyp:ui', | 63 '../ui.gyp:ui', |
65 'aura', | 64 'aura', |
66 ], | 65 ], |
67 'include_dirs': [ | 66 'include_dirs': [ |
68 '..', | 67 '..', |
69 ], | 68 ], |
70 'sources': [ | 69 'sources': [ |
71 'test/aura_test_base.cc', | 70 'test/aura_test_base.cc', |
72 'test/aura_test_base.h', | 71 'test/aura_test_base.h', |
73 'test/event_generator.cc', | 72 'test/event_generator.cc', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 ], | 107 ], |
109 }, | 108 }, |
110 { | 109 { |
111 'target_name': 'aura_unittests', | 110 'target_name': 'aura_unittests', |
112 'type': 'executable', | 111 'type': 'executable', |
113 'dependencies': [ | 112 'dependencies': [ |
114 '../../base/base.gyp:test_support_base', | 113 '../../base/base.gyp:test_support_base', |
115 '../../chrome/chrome_resources.gyp:packed_resources', | 114 '../../chrome/chrome_resources.gyp:packed_resources', |
116 '../../skia/skia.gyp:skia', | 115 '../../skia/skia.gyp:skia', |
117 '../../testing/gtest.gyp:gtest', | 116 '../../testing/gtest.gyp:gtest', |
| 117 '../gfx/compositor/compositor.gyp:compositor', |
118 '../gfx/compositor/compositor.gyp:compositor_test_support', | 118 '../gfx/compositor/compositor.gyp:compositor_test_support', |
119 '../gfx/compositor/compositor.gyp:test_compositor', | |
120 '../gfx/gl/gl.gyp:gl', | 119 '../gfx/gl/gl.gyp:gl', |
121 '../ui.gyp:gfx_resources', | 120 '../ui.gyp:gfx_resources', |
122 '../ui.gyp:ui', | 121 '../ui.gyp:ui', |
123 '../ui.gyp:ui_resources', | 122 '../ui.gyp:ui_resources', |
124 'test_support_aura', | 123 'test_support_aura', |
125 'aura', | 124 'aura', |
126 ], | 125 ], |
127 'include_dirs': [ | 126 'include_dirs': [ |
128 '..', | 127 '..', |
129 ], | 128 ], |
(...skipping 11 matching lines...) Expand all Loading... |
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 }], |
147 ], | 146 ], |
148 }, | 147 }, |
149 ], | 148 ], |
150 } | 149 } |
OLD | NEW |