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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 'screen/screen_accelerator_handler.h', | 52 'screen/screen_accelerator_handler.h', |
53 'screen/screen_manager_impl.cc', | 53 'screen/screen_manager_impl.cc', |
54 'wm/public/window_manager.h', | 54 'wm/public/window_manager.h', |
55 'wm/window_manager_impl.cc', | 55 'wm/window_manager_impl.cc', |
56 'wm/window_overview_mode.cc', | 56 'wm/window_overview_mode.cc', |
57 'wm/window_overview_mode.h', | 57 'wm/window_overview_mode.h', |
58 ], | 58 ], |
59 }, | 59 }, |
60 { | 60 { |
61 'target_name': 'athena_content_lib', | 61 'target_name': 'athena_content_lib', |
62 'type': '<(component)', | 62 'type': 'static_library', |
63 'dependencies': [ | 63 'dependencies': [ |
64 'athena_lib', | 64 'athena_lib', |
65 '../content/content.gyp:content_browser', | 65 '../content/content.gyp:content_browser', |
66 '../ui/app_list/app_list.gyp:app_list', | 66 '../ui/app_list/app_list.gyp:app_list', |
67 '../ui/views/controls/webview/webview.gyp:webview', | 67 '../ui/views/controls/webview/webview.gyp:webview', |
68 '../skia/skia.gyp:skia', | 68 '../skia/skia.gyp:skia', |
69 ], | 69 ], |
70 'defines': [ | 70 'defines': [ |
71 'ATHENA_IMPLEMENTATION', | 71 'ATHENA_IMPLEMENTATION', |
72 ], | 72 ], |
73 'sources': [ | 73 'sources': [ |
74 'content/public/content_activity_factory.h', | 74 'content/public/content_activity_factory.h', |
75 'content/public/content_app_model_builder.h', | 75 'content/public/content_app_model_builder.h', |
76 'content/content_activity_factory.cc', | 76 'content/content_activity_factory.cc', |
77 'content/content_app_model_builder.cc', | 77 'content/content_app_model_builder.cc', |
| 78 'content/app_activity.h', |
| 79 'content/app_activity.cc', |
78 'content/web_activity.h', | 80 'content/web_activity.h', |
79 'content/web_activity.cc', | 81 'content/web_activity.cc', |
80 ], | 82 ], |
81 }, | 83 }, |
82 { | 84 { |
83 'target_name': 'athena_test_support', | 85 'target_name': 'athena_test_support', |
84 'type': 'static_library', | 86 'type': 'static_library', |
85 'dependencies': [ | 87 'dependencies': [ |
86 '../base/base.gyp:test_support_base', | 88 '../base/base.gyp:test_support_base', |
87 '../skia/skia.gyp:skia', | 89 '../skia/skia.gyp:skia', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'sources': [ | 127 'sources': [ |
126 'test/athena_unittests.cc', | 128 'test/athena_unittests.cc', |
127 'activity/activity_manager_unittest.cc', | 129 'activity/activity_manager_unittest.cc', |
128 'input/accelerator_manager_unittest.cc', | 130 'input/accelerator_manager_unittest.cc', |
129 'wm/window_manager_unittest.cc', | 131 'wm/window_manager_unittest.cc', |
130 ], | 132 ], |
131 } | 133 } |
132 ], | 134 ], |
133 } | 135 } |
134 | 136 |
OLD | NEW |