| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'examples/toplevel_window.cc', | 178 'examples/toplevel_window.cc', |
| 179 'examples/toplevel_window.h', | 179 'examples/toplevel_window.h', |
| 180 'examples/widgets.cc', | 180 'examples/widgets.cc', |
| 181 'examples/window_type_launcher.cc', | 181 'examples/window_type_launcher.cc', |
| 182 'examples/window_type_launcher.h', | 182 'examples/window_type_launcher.h', |
| 183 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 183 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 184 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 184 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 185 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 185 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
| 186 ], | 186 ], |
| 187 }, | 187 }, |
| 188 # It's convenient for aura_shell developers to be able to build all | |
| 189 # compositor and aura targets from within this solution. | |
| 190 { | |
| 191 'target_name': 'buildbot_targets', | |
| 192 'type': 'none', | |
| 193 'dependencies': [ | |
| 194 '../../views/views.gyp:views', | |
| 195 '../../views/views.gyp:views_aura_desktop', | |
| 196 '../../views/views.gyp:views_desktop', | |
| 197 '../../views/views.gyp:views_desktop_lib', | |
| 198 '../../views/views.gyp:views_unittests', | |
| 199 '../aura/aura.gyp:*', | |
| 200 '../gfx/compositor/compositor.gyp:*', | |
| 201 'aura_shell_exe', | |
| 202 ], | |
| 203 }, | |
| 204 ], | 188 ], |
| 205 } | 189 } |
| OLD | NEW |