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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 'wm/window_overview_mode.cc', | 50 'wm/window_overview_mode.cc', |
51 'wm/window_overview_mode.h', | 51 'wm/window_overview_mode.h', |
52 ], | 52 ], |
53 }, | 53 }, |
54 { | 54 { |
55 'target_name': 'athena_content_lib', | 55 'target_name': 'athena_content_lib', |
56 'type': '<(component)', | 56 'type': '<(component)', |
57 'dependencies': [ | 57 'dependencies': [ |
58 'athena_lib', | 58 'athena_lib', |
59 '../content/content.gyp:content_browser', | 59 '../content/content.gyp:content_browser', |
| 60 '../ui/views/controls/webview/webview.gyp:webview', |
| 61 '../skia/skia.gyp:skia', |
60 ], | 62 ], |
61 'defines': [ | 63 'defines': [ |
62 'ATHENA_IMPLEMENTATION', | 64 'ATHENA_IMPLEMENTATION', |
63 ], | 65 ], |
64 'sources': [ | 66 'sources': [ |
65 'content/public/content_activity_factory.h', | 67 'content/public/content_activity_factory.h', |
66 'content/content_activity_factory.cc', | 68 'content/content_activity_factory.cc', |
67 'content/web_activity.h', | 69 'content/web_activity.h', |
68 'content/web_activity.cc', | 70 'content/web_activity.cc', |
69 ], | 71 ], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 { | 104 { |
103 'target_name': 'athena_unittests', | 105 'target_name': 'athena_unittests', |
104 'type': 'executable', | 106 'type': 'executable', |
105 'dependencies': [ | 107 'dependencies': [ |
106 '../testing/gtest.gyp:gtest', | 108 '../testing/gtest.gyp:gtest', |
107 'athena_lib', | 109 'athena_lib', |
108 'athena_test_support', | 110 'athena_test_support', |
109 ], | 111 ], |
110 'sources': [ | 112 'sources': [ |
111 'test/athena_unittests.cc', | 113 'test/athena_unittests.cc', |
| 114 'activity/activity_manager_unittest.cc', |
112 'input/accelerator_manager_unittest.cc', | 115 'input/accelerator_manager_unittest.cc', |
113 'wm/window_manager_unittest.cc', | 116 'wm/window_manager_unittest.cc', |
114 ], | 117 ], |
115 } | 118 } |
116 ], | 119 ], |
117 } | 120 } |
118 | 121 |
OLD | NEW |