| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 | 9 |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 'always_on_top_controller.cc', | 36 'always_on_top_controller.cc', |
| 37 'always_on_top_controller.h', | 37 'always_on_top_controller.h', |
| 38 'app_list.cc', | 38 'app_list.cc', |
| 39 'app_list.h', | 39 'app_list.h', |
| 40 'default_container_event_filter.cc', | 40 'default_container_event_filter.cc', |
| 41 'default_container_event_filter.h', | 41 'default_container_event_filter.h', |
| 42 'default_container_layout_manager.cc', | 42 'default_container_layout_manager.cc', |
| 43 'default_container_layout_manager.h', | 43 'default_container_layout_manager.h', |
| 44 'desktop_background_view.cc', | 44 'desktop_background_view.cc', |
| 45 'desktop_background_view.h', | 45 'desktop_background_view.h', |
| 46 'desktop_event_filter.cc', | 46 'root_window_event_filter.cc', |
| 47 'desktop_event_filter.h', | 47 'root_window_event_filter.h', |
| 48 'desktop_layout_manager.cc', | 48 'root_window_layout_manager.cc', |
| 49 'desktop_layout_manager.h', | 49 'root_window_layout_manager.h', |
| 50 'drag_drop_controller.cc', | 50 'drag_drop_controller.cc', |
| 51 'drag_drop_controller.h', | 51 'drag_drop_controller.h', |
| 52 'drag_image_view.cc', | 52 'drag_image_view.cc', |
| 53 'drag_image_view.h', | 53 'drag_image_view.h', |
| 54 'image_grid.cc', | 54 'image_grid.cc', |
| 55 'image_grid.h', | 55 'image_grid.h', |
| 56 'launcher/app_launcher_button.cc', | 56 'launcher/app_launcher_button.cc', |
| 57 'launcher/app_launcher_button.h', | 57 'launcher/app_launcher_button.h', |
| 58 'launcher/launcher.cc', | 58 'launcher/launcher.cc', |
| 59 'launcher/launcher.h', | 59 'launcher/launcher.h', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 '../gfx/compositor/compositor.gyp:test_compositor', | 138 '../gfx/compositor/compositor.gyp:test_compositor', |
| 139 '../ui.gyp:gfx_resources', | 139 '../ui.gyp:gfx_resources', |
| 140 '../ui.gyp:ui', | 140 '../ui.gyp:ui', |
| 141 '../ui.gyp:ui_resources', | 141 '../ui.gyp:ui_resources', |
| 142 '../ui.gyp:ui_resources_standard', | 142 '../ui.gyp:ui_resources_standard', |
| 143 '../views/views.gyp:views', | 143 '../views/views.gyp:views', |
| 144 'aura_shell', | 144 'aura_shell', |
| 145 ], | 145 ], |
| 146 'sources': [ | 146 'sources': [ |
| 147 'default_container_layout_manager_unittest.cc', | 147 'default_container_layout_manager_unittest.cc', |
| 148 'desktop_event_filter_unittest.cc', | 148 'root_window_event_filter_unittest.cc', |
| 149 'drag_drop_controller_unittest.cc', | 149 'drag_drop_controller_unittest.cc', |
| 150 'image_grid_unittest.cc', | 150 'image_grid_unittest.cc', |
| 151 'launcher/launcher_model_unittest.cc', | 151 'launcher/launcher_model_unittest.cc', |
| 152 'launcher/view_model_unittest.cc', | 152 'launcher/view_model_unittest.cc', |
| 153 'launcher/view_model_utils_unittest.cc', | 153 'launcher/view_model_utils_unittest.cc', |
| 154 'modal_container_layout_manager_unittest.cc', | 154 'modal_container_layout_manager_unittest.cc', |
| 155 'run_all_unittests.cc', | 155 'run_all_unittests.cc', |
| 156 'shadow_controller_unittest.cc', | 156 'shadow_controller_unittest.cc', |
| 157 'shell_accelerator_controller_unittest.cc', | 157 'shell_accelerator_controller_unittest.cc', |
| 158 'shell_unittest.cc', | 158 'shell_unittest.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 'examples/widgets.cc', | 202 'examples/widgets.cc', |
| 203 'examples/window_type_launcher.cc', | 203 'examples/window_type_launcher.cc', |
| 204 'examples/window_type_launcher.h', | 204 'examples/window_type_launcher.h', |
| 205 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 205 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 206 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 206 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 207 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 207 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
| 208 ], | 208 ], |
| 209 }, | 209 }, |
| 210 ], | 210 ], |
| 211 } | 211 } |
| OLD | NEW |