OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 '../ui/base/ui_base.gyp:ui_base_test_support', | 144 '../ui/base/ui_base.gyp:ui_base_test_support', |
145 '../ui/compositor/compositor.gyp:compositor_test_support', | 145 '../ui/compositor/compositor.gyp:compositor_test_support', |
146 '../ui/views/views.gyp:views', | 146 '../ui/views/views.gyp:views', |
147 '../ui/wm/wm.gyp:wm', | 147 '../ui/wm/wm.gyp:wm', |
148 '../url/url.gyp:url_lib', | 148 '../url/url.gyp:url_lib', |
149 'athena_content_lib', | 149 'athena_content_lib', |
150 'athena_lib', | 150 'athena_lib', |
151 'resources/athena_resources.gyp:athena_resources', | 151 'resources/athena_resources.gyp:athena_resources', |
152 ], | 152 ], |
153 'sources': [ | 153 'sources': [ |
154 'main/athena_launcher.cc', | |
155 'main/athena_launcher.h', | |
156 'main/placeholder.cc', | |
157 'main/placeholder.h', | |
158 'test/athena_test_base.cc', | 154 'test/athena_test_base.cc', |
159 'test/athena_test_base.h', | 155 'test/athena_test_base.h', |
160 'test/athena_test_helper.cc', | 156 'test/athena_test_helper.cc', |
161 'test/athena_test_helper.h', | 157 'test/athena_test_helper.h', |
162 'test/sample_activity.cc', | 158 'test/sample_activity.cc', |
163 'test/sample_activity.h', | 159 'test/sample_activity.h', |
164 'test/sample_activity_factory.cc', | 160 'test/sample_activity_factory.cc', |
165 'test/sample_activity_factory.h', | 161 'test/sample_activity_factory.h', |
166 'test/test_app_model_builder.cc', | 162 'test/test_app_model_builder.cc', |
167 'test/test_app_model_builder.h', | 163 'test/test_app_model_builder.h', |
168 ], | 164 ], |
169 }, | 165 }, |
170 { | 166 { |
171 'target_name': 'athena_unittests', | 167 'target_name': 'athena_unittests', |
172 'type': 'executable', | 168 'type': 'executable', |
173 'dependencies': [ | 169 'dependencies': [ |
| 170 '../skia/skia.gyp:skia', |
174 '../testing/gtest.gyp:gtest', | 171 '../testing/gtest.gyp:gtest', |
175 '../skia/skia.gyp:skia', | |
176 'athena_lib', | 172 'athena_lib', |
177 'athena_test_support', | 173 'athena_test_support', |
| 174 'main/athena_main.gyp:athena_main_lib', |
178 'resources/athena_resources.gyp:athena_pak', | 175 'resources/athena_resources.gyp:athena_pak', |
179 ], | 176 ], |
180 'sources': [ | 177 'sources': [ |
181 'test/athena_unittests.cc', | 178 'test/athena_unittests.cc', |
182 'activity/activity_manager_unittest.cc', | 179 'activity/activity_manager_unittest.cc', |
183 'home/home_card_unittest.cc', | 180 'home/home_card_unittest.cc', |
184 'input/accelerator_manager_unittest.cc', | 181 'input/accelerator_manager_unittest.cc', |
185 'screen/screen_manager_unittest.cc', | 182 'screen/screen_manager_unittest.cc', |
186 'wm/split_view_controller_unittest.cc', | 183 'wm/split_view_controller_unittest.cc', |
187 'wm/window_list_provider_impl_unittest.cc', | 184 'wm/window_list_provider_impl_unittest.cc', |
188 'wm/window_manager_unittest.cc', | 185 'wm/window_manager_unittest.cc', |
189 ], | 186 ], |
190 } | 187 } |
191 ], | 188 ], |
192 } | 189 } |
193 | 190 |
OLD | NEW |