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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'dependencies': [ | 67 'dependencies': [ |
68 '../base/base.gyp:test_support_base', | 68 '../base/base.gyp:test_support_base', |
69 '../skia/skia.gyp:skia', | 69 '../skia/skia.gyp:skia', |
70 '../testing/gtest.gyp:gtest', | 70 '../testing/gtest.gyp:gtest', |
71 '../ui/accessibility/accessibility.gyp:ax_gen', | 71 '../ui/accessibility/accessibility.gyp:ax_gen', |
72 '../ui/aura/aura.gyp:aura_test_support', | 72 '../ui/aura/aura.gyp:aura_test_support', |
73 '../ui/base/ui_base.gyp:ui_base_test_support', | 73 '../ui/base/ui_base.gyp:ui_base_test_support', |
74 '../ui/compositor/compositor.gyp:compositor_test_support', | 74 '../ui/compositor/compositor.gyp:compositor_test_support', |
75 '../ui/views/views.gyp:views', | 75 '../ui/views/views.gyp:views', |
76 '../ui/wm/wm.gyp:wm', | 76 '../ui/wm/wm.gyp:wm', |
| 77 '../url/url.gyp:url_lib', |
77 'athena_lib', | 78 'athena_lib', |
78 ], | 79 ], |
79 'sources': [ | 80 'sources': [ |
80 'main/athena_launcher.cc', | 81 'main/athena_launcher.cc', |
81 'main/athena_launcher.h', | 82 'main/athena_launcher.h', |
82 'main/placeholder.cc', | 83 'main/placeholder.cc', |
83 'main/placeholder.h', | 84 'main/placeholder.h', |
84 'test/athena_test_base.cc', | 85 'test/athena_test_base.cc', |
85 'test/athena_test_base.h', | 86 'test/athena_test_base.h', |
86 'test/athena_test_helper.cc', | 87 'test/athena_test_helper.cc', |
87 'test/athena_test_helper.h', | 88 'test/athena_test_helper.h', |
| 89 'test/sample_activity.cc', |
| 90 'test/sample_activity.h', |
| 91 'test/sample_activity_factory.cc', |
| 92 'test/sample_activity_factory.h', |
88 ], | 93 ], |
89 }, | 94 }, |
90 { | 95 { |
91 'target_name': 'athena_unittests', | 96 'target_name': 'athena_unittests', |
92 'type': 'executable', | 97 'type': 'executable', |
93 'dependencies': [ | 98 'dependencies': [ |
94 '../testing/gtest.gyp:gtest', | 99 '../testing/gtest.gyp:gtest', |
95 'athena_lib', | 100 'athena_lib', |
96 'athena_test_support', | 101 'athena_test_support', |
97 ], | 102 ], |
98 'sources': [ | 103 'sources': [ |
99 'test/athena_unittests.cc', | 104 'test/athena_unittests.cc', |
100 'wm/window_manager_unittest.cc', | 105 'wm/window_manager_unittest.cc', |
101 ], | 106 ], |
102 } | 107 } |
103 ], | 108 ], |
104 } | 109 } |
105 | 110 |
OLD | NEW |