Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Side by Side Diff: athena/athena.gyp

Issue 475533008: Revert of Rotate screen in response to accelerator or device orientation sensors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | athena/main/athena_launcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 {
11 'target_name': 'athena_lib', 11 'target_name': 'athena_lib',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:test_support_base',
15 '../extensions/shell/app_shell.gyp:app_shell_version_header', 14 '../extensions/shell/app_shell.gyp:app_shell_version_header',
16 '../ipc/ipc.gyp:ipc',
17 '../skia/skia.gyp:skia', 15 '../skia/skia.gyp:skia',
18 '../ui/accessibility/accessibility.gyp:ax_gen', 16 '../ui/accessibility/accessibility.gyp:ax_gen',
19 '../ui/app_list/app_list.gyp:app_list', 17 '../ui/app_list/app_list.gyp:app_list',
20 '../ui/aura/aura.gyp:aura', 18 '../ui/aura/aura.gyp:aura',
21 '../ui/aura/aura.gyp:aura_test_support',
22 '../ui/events/events.gyp:events_base', 19 '../ui/events/events.gyp:events_base',
23 '../ui/strings/ui_strings.gyp:ui_strings', 20 '../ui/strings/ui_strings.gyp:ui_strings',
24 '../ui/views/views.gyp:views', 21 '../ui/views/views.gyp:views',
25 'resources/athena_resources.gyp:athena_resources', 22 'resources/athena_resources.gyp:athena_resources',
26 ], 23 ],
27 'defines': [ 24 'defines': [
28 'ATHENA_IMPLEMENTATION', 25 'ATHENA_IMPLEMENTATION',
29 ], 26 ],
30 'sources': [ 27 'sources': [
31 # All .cc, .h under athena, except unittests 28 # All .cc, .h under athena, except unittests
(...skipping 29 matching lines...) Expand all
61 'input/accelerator_manager_impl.h', 58 'input/accelerator_manager_impl.h',
62 'input/input_manager_impl.cc', 59 'input/input_manager_impl.cc',
63 'input/public/accelerator_manager.h', 60 'input/public/accelerator_manager.h',
64 'input/public/input_manager.h', 61 'input/public/input_manager.h',
65 'screen/background_controller.cc', 62 'screen/background_controller.cc',
66 'screen/background_controller.h', 63 'screen/background_controller.h',
67 'screen/public/screen_manager.h', 64 'screen/public/screen_manager.h',
68 'screen/screen_accelerator_handler.cc', 65 'screen/screen_accelerator_handler.cc',
69 'screen/screen_accelerator_handler.h', 66 'screen/screen_accelerator_handler.h',
70 'screen/screen_manager_impl.cc', 67 'screen/screen_manager_impl.cc',
71 'system/device_socket_listener.cc',
72 'system/device_socket_listener.h',
73 'system/orientation_controller.cc',
74 'system/orientation_controller.h',
75 'system/power_button_controller.cc', 68 'system/power_button_controller.cc',
76 'system/power_button_controller.h', 69 'system/power_button_controller.h',
77 'system/public/system_ui.h', 70 'system/public/system_ui.h',
78 'system/system_ui_impl.cc', 71 'system/system_ui_impl.cc',
79 'wm/bezel_controller.cc', 72 'wm/bezel_controller.cc',
80 'wm/bezel_controller.h', 73 'wm/bezel_controller.h',
81 'wm/mru_window_tracker.cc', 74 'wm/mru_window_tracker.cc',
82 'wm/mru_window_tracker.h', 75 'wm/mru_window_tracker.h',
83 'wm/overview_toolbar.cc', 76 'wm/overview_toolbar.cc',
84 'wm/overview_toolbar.h', 77 'wm/overview_toolbar.h',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 '../skia/skia.gyp:skia', 132 '../skia/skia.gyp:skia',
140 '../testing/gtest.gyp:gtest', 133 '../testing/gtest.gyp:gtest',
141 '../ui/accessibility/accessibility.gyp:ax_gen', 134 '../ui/accessibility/accessibility.gyp:ax_gen',
142 '../ui/app_list/app_list.gyp:app_list', 135 '../ui/app_list/app_list.gyp:app_list',
143 '../ui/aura/aura.gyp:aura_test_support', 136 '../ui/aura/aura.gyp:aura_test_support',
144 '../ui/base/ui_base.gyp:ui_base_test_support', 137 '../ui/base/ui_base.gyp:ui_base_test_support',
145 '../ui/compositor/compositor.gyp:compositor_test_support', 138 '../ui/compositor/compositor.gyp:compositor_test_support',
146 '../ui/views/views.gyp:views', 139 '../ui/views/views.gyp:views',
147 '../ui/wm/wm.gyp:wm', 140 '../ui/wm/wm.gyp:wm',
148 '../url/url.gyp:url_lib', 141 '../url/url.gyp:url_lib',
149 'athena_content_lib',
150 'athena_lib', 142 'athena_lib',
151 'resources/athena_resources.gyp:athena_resources', 143 'resources/athena_resources.gyp:athena_resources',
152 ], 144 ],
153 'sources': [ 145 'sources': [
154 'main/athena_launcher.cc', 146 'main/athena_launcher.cc',
155 'main/athena_launcher.h', 147 'main/athena_launcher.h',
156 'main/placeholder.cc', 148 'main/placeholder.cc',
157 'main/placeholder.h', 149 'main/placeholder.h',
158 'test/athena_test_base.cc', 150 'test/athena_test_base.cc',
159 'test/athena_test_base.h', 151 'test/athena_test_base.h',
(...skipping 22 matching lines...) Expand all
182 'activity/activity_manager_unittest.cc', 174 'activity/activity_manager_unittest.cc',
183 'home/home_card_unittest.cc', 175 'home/home_card_unittest.cc',
184 'input/accelerator_manager_unittest.cc', 176 'input/accelerator_manager_unittest.cc',
185 'screen/screen_manager_unittest.cc', 177 'screen/screen_manager_unittest.cc',
186 'wm/window_manager_unittest.cc', 178 'wm/window_manager_unittest.cc',
187 ], 179 ],
188 } 180 }
189 ], 181 ],
190 } 182 }
191 183
OLDNEW
« no previous file with comments | « no previous file | athena/main/athena_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698