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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
154 'test/athena_test_base.cc', | 154 'test/athena_test_base.cc', |
155 'test/athena_test_base.h', | 155 'test/athena_test_base.h', |
156 'test/athena_test_helper.cc', | 156 'test/athena_test_helper.cc', |
157 'test/athena_test_helper.h', | 157 'test/athena_test_helper.h', |
158 'test/sample_activity.cc', | 158 'test/sample_activity.cc', |
159 'test/sample_activity.h', | 159 'test/sample_activity.h', |
160 'test/sample_activity_factory.cc', | 160 'test/sample_activity_factory.cc', |
161 'test/sample_activity_factory.h', | 161 'test/sample_activity_factory.h', |
162 'test/test_app_model_builder.cc', | 162 'test/test_app_model_builder.cc', |
163 'test/test_app_model_builder.h', | 163 'test/test_app_model_builder.h', |
164 'wm/window_manager_impl_test_api.cc', | |
165 'wm/window_manager_impl_test_api.h', | |
oshima
2014/08/21 19:24:03
how about putting them in wm/test?
I'll change on
| |
164 ], | 166 ], |
165 }, | 167 }, |
166 { | 168 { |
167 'target_name': 'athena_unittests', | 169 'target_name': 'athena_unittests', |
168 'type': 'executable', | 170 'type': 'executable', |
169 'dependencies': [ | 171 'dependencies': [ |
170 '../skia/skia.gyp:skia', | 172 '../skia/skia.gyp:skia', |
171 '../testing/gtest.gyp:gtest', | 173 '../testing/gtest.gyp:gtest', |
172 'athena_lib', | 174 'athena_lib', |
173 'athena_test_support', | 175 'athena_test_support', |
174 'main/athena_main.gyp:athena_main_lib', | 176 'main/athena_main.gyp:athena_main_lib', |
175 'resources/athena_resources.gyp:athena_pak', | 177 'resources/athena_resources.gyp:athena_pak', |
176 ], | 178 ], |
177 'sources': [ | 179 'sources': [ |
178 'test/athena_unittests.cc', | 180 'test/athena_unittests.cc', |
179 'activity/activity_manager_unittest.cc', | 181 'activity/activity_manager_unittest.cc', |
180 'home/home_card_unittest.cc', | 182 'home/home_card_unittest.cc', |
181 'input/accelerator_manager_unittest.cc', | 183 'input/accelerator_manager_unittest.cc', |
182 'screen/screen_manager_unittest.cc', | 184 'screen/screen_manager_unittest.cc', |
183 'wm/split_view_controller_unittest.cc', | 185 'wm/split_view_controller_unittest.cc', |
184 'wm/window_list_provider_impl_unittest.cc', | 186 'wm/window_list_provider_impl_unittest.cc', |
185 'wm/window_manager_unittest.cc', | 187 'wm/window_manager_unittest.cc', |
186 ], | 188 ], |
187 } | 189 } |
188 ], | 190 ], |
189 } | 191 } |
190 | 192 |
OLD | NEW |