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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 '../ui.gyp:gfx_resources', | 87 '../ui.gyp:gfx_resources', |
88 '../ui.gyp:ui', | 88 '../ui.gyp:ui', |
89 '../ui.gyp:ui_resources', | 89 '../ui.gyp:ui_resources', |
90 '../ui.gyp:ui_resources_standard', | 90 '../ui.gyp:ui_resources_standard', |
91 'aura_shell', | 91 'aura_shell', |
92 ], | 92 ], |
93 'sources': [ | 93 'sources': [ |
94 'aura_shell_main.cc', | 94 'aura_shell_main.cc', |
95 'examples/bubble.cc', | 95 'examples/bubble.cc', |
96 'examples/example_factory.h', | 96 'examples/example_factory.h', |
| 97 'examples/lock_view.cc', |
97 'examples/toplevel_window.cc', | 98 'examples/toplevel_window.cc', |
98 'examples/toplevel_window.h', | 99 'examples/toplevel_window.h', |
99 'examples/window_type_launcher.cc', | 100 'examples/window_type_launcher.cc', |
100 'examples/window_type_launcher.h', | 101 'examples/window_type_launcher.h', |
101 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 102 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
102 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 103 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
103 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 104 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
104 ], | 105 ], |
105 }, | 106 }, |
106 # It's convenient for aura_shell developers to be able to build all | 107 # It's convenient for aura_shell developers to be able to build all |
107 # compositor and aura targets from within this solution. | 108 # compositor and aura targets from within this solution. |
108 { | 109 { |
109 'target_name': 'buildbot_targets', | 110 'target_name': 'buildbot_targets', |
110 'type': 'none', | 111 'type': 'none', |
111 'dependencies': [ | 112 'dependencies': [ |
112 'aura_shell_exe', | 113 'aura_shell_exe', |
113 '../aura/aura.gyp:*', | 114 '../aura/aura.gyp:*', |
114 '../gfx/compositor/compositor.gyp:*', | 115 '../gfx/compositor/compositor.gyp:*', |
115 '../../views/views.gyp:views', | 116 '../../views/views.gyp:views', |
116 '../../views/views.gyp:views_aura_desktop', | 117 '../../views/views.gyp:views_aura_desktop', |
117 '../../views/views.gyp:views_desktop', | 118 '../../views/views.gyp:views_desktop', |
118 '../../views/views.gyp:views_desktop_lib', | 119 '../../views/views.gyp:views_desktop_lib', |
119 '../../views/views.gyp:views_unittests', | 120 '../../views/views.gyp:views_unittests', |
120 ], | 121 ], |
121 }, | 122 }, |
122 ], | 123 ], |
123 } | 124 } |
OLD | NEW |