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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |