| 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 21 matching lines...) Expand all Loading... |
| 32 ], | 32 ], |
| 33 'defines': [ | 33 'defines': [ |
| 34 'ATHENA_IMPLEMENTATION', | 34 'ATHENA_IMPLEMENTATION', |
| 35 ], | 35 ], |
| 36 'sources': [ | 36 'sources': [ |
| 37 # All .cc, .h under athena, except unittests | 37 # All .cc, .h under athena, except unittests |
| 38 'activity/activity.cc', | 38 'activity/activity.cc', |
| 39 'activity/activity_factory.cc', | 39 'activity/activity_factory.cc', |
| 40 'activity/activity_manager_impl.cc', | 40 'activity/activity_manager_impl.cc', |
| 41 'activity/activity_manager_impl.h', | 41 'activity/activity_manager_impl.h', |
| 42 'activity/activity_view_manager_impl.cc', | |
| 43 'activity/activity_frame_view.cc', | 42 'activity/activity_frame_view.cc', |
| 44 'activity/activity_frame_view.h', | 43 'activity/activity_frame_view.h', |
| 45 'activity/activity_widget_delegate.cc', | 44 'activity/activity_widget_delegate.cc', |
| 46 'activity/activity_widget_delegate.h', | 45 'activity/activity_widget_delegate.h', |
| 47 'activity/public/activity.h', | 46 'activity/public/activity.h', |
| 48 'activity/public/activity_factory.h', | 47 'activity/public/activity_factory.h', |
| 49 'activity/public/activity_manager.h', | 48 'activity/public/activity_manager.h', |
| 50 'activity/public/activity_manager_observer.h', | 49 'activity/public/activity_manager_observer.h', |
| 51 'activity/public/activity_view_manager.h', | |
| 52 'activity/public/activity_view_model.h', | 50 'activity/public/activity_view_model.h', |
| 53 'athena_export.h', | 51 'athena_export.h', |
| 54 'env/athena_env_impl.cc', | 52 'env/athena_env_impl.cc', |
| 55 'env/public/athena_env.h', | 53 'env/public/athena_env.h', |
| 56 'home/app_list_view_delegate.cc', | 54 'home/app_list_view_delegate.cc', |
| 57 'home/app_list_view_delegate.h', | 55 'home/app_list_view_delegate.h', |
| 58 'home/athena_start_page_view.cc', | 56 'home/athena_start_page_view.cc', |
| 59 'home/athena_start_page_view.h', | 57 'home/athena_start_page_view.h', |
| 60 'home/home_card_constants.cc', | 58 'home/home_card_constants.cc', |
| 61 'home/home_card_constants.h', | 59 'home/home_card_constants.h', |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 'util/drag_handle_unittest.cc', | 280 'util/drag_handle_unittest.cc', |
| 283 'util/fill_layout_manager_unittest.cc', | 281 'util/fill_layout_manager_unittest.cc', |
| 284 'wm/split_view_controller_unittest.cc', | 282 'wm/split_view_controller_unittest.cc', |
| 285 'wm/window_list_provider_impl_unittest.cc', | 283 'wm/window_list_provider_impl_unittest.cc', |
| 286 'wm/window_manager_unittest.cc', | 284 'wm/window_manager_unittest.cc', |
| 287 ], | 285 ], |
| 288 } | 286 } |
| 289 ], | 287 ], |
| 290 } | 288 } |
| 291 | 289 |
| OLD | NEW |