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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 ], | 78 ], |
79 'sources': [ | 79 'sources': [ |
80 'main/athena_launcher.cc', | 80 'main/athena_launcher.cc', |
81 'main/athena_launcher.h', | 81 'main/athena_launcher.h', |
82 'main/placeholder.cc', | 82 'main/placeholder.cc', |
83 'main/placeholder.h', | 83 'main/placeholder.h', |
84 'test/athena_test_base.cc', | 84 'test/athena_test_base.cc', |
85 'test/athena_test_base.h', | 85 'test/athena_test_base.h', |
86 'test/athena_test_helper.cc', | 86 'test/athena_test_helper.cc', |
87 'test/athena_test_helper.h', | 87 'test/athena_test_helper.h', |
| 88 'test/sample_activity.cc', |
| 89 'test/sample_activity.h', |
| 90 'test/sample_activity_factory.cc', |
| 91 'test/sample_activity_factory.h', |
88 ], | 92 ], |
89 }, | 93 }, |
90 { | 94 { |
91 'target_name': 'athena_unittests', | 95 'target_name': 'athena_unittests', |
92 'type': 'executable', | 96 'type': 'executable', |
93 'dependencies': [ | 97 'dependencies': [ |
94 '../testing/gtest.gyp:gtest', | 98 '../testing/gtest.gyp:gtest', |
95 'athena_lib', | 99 'athena_lib', |
96 'athena_test_support', | 100 'athena_test_support', |
97 ], | 101 ], |
98 'sources': [ | 102 'sources': [ |
99 'test/athena_unittests.cc', | 103 'test/athena_unittests.cc', |
100 'wm/window_manager_unittest.cc', | 104 'wm/window_manager_unittest.cc', |
101 ], | 105 ], |
102 } | 106 } |
103 ], | 107 ], |
104 } | 108 } |
105 | 109 |
OLD | NEW |