| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'aura', | 11 'target_name': 'aura', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 15 '../../base/base.gyp:base_i18n', | 15 '../../base/base.gyp:base_i18n', |
| 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 17 '../../skia/skia.gyp:skia', | 17 '../../skia/skia.gyp:skia', |
| 18 '../gfx/compositor/compositor.gyp:compositor', | 18 '../gfx/compositor/compositor.gyp:compositor', |
| 19 '../ui.gyp:gfx_resources', | 19 '../ui.gyp:gfx_resources', |
| 20 '../ui.gyp:ui', | 20 '../ui.gyp:ui', |
| 21 '../ui.gyp:ui_resources', | 21 '../ui.gyp:ui_resources', |
| 22 ], | 22 ], |
| 23 'defines': [ | 23 'defines': [ |
| 24 'AURA_IMPLEMENTATION', | 24 'AURA_IMPLEMENTATION', |
| 25 ], | 25 ], |
| 26 'sources': [ | 26 'sources': [ |
| 27 'aura_switches.cc', | 27 'aura_switches.cc', |
| 28 'aura_switches.h', | 28 'aura_switches.h', |
| 29 'client/accelerator_client.cc', |
| 30 'client/accelerator_client.h', |
| 29 'client/activation_client.cc', | 31 'client/activation_client.cc', |
| 30 'client/activation_client.h', | 32 'client/activation_client.h', |
| 31 'client/activation_delegate.cc', | 33 'client/activation_delegate.cc', |
| 32 'client/activation_delegate.h', | 34 'client/activation_delegate.h', |
| 33 'client/aura_constants.cc', | 35 'client/aura_constants.cc', |
| 34 'client/aura_constants.h', | 36 'client/aura_constants.h', |
| 35 'client/drag_drop_client.cc', | 37 'client/drag_drop_client.cc', |
| 36 'client/drag_drop_client.h', | 38 'client/drag_drop_client.h', |
| 37 'client/drag_drop_delegate.cc', | 39 'client/drag_drop_delegate.cc', |
| 38 'client/drag_drop_delegate.h', | 40 'client/drag_drop_delegate.h', |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 ], | 180 ], |
| 179 }, { # use_webkit_compositor!=1 | 181 }, { # use_webkit_compositor!=1 |
| 180 'dependencies': [ | 182 'dependencies': [ |
| 181 '../gfx/compositor/compositor.gyp:test_compositor', | 183 '../gfx/compositor/compositor.gyp:test_compositor', |
| 182 ], | 184 ], |
| 183 }], | 185 }], |
| 184 ], | 186 ], |
| 185 }, | 187 }, |
| 186 ], | 188 ], |
| 187 } | 189 } |
| OLD | NEW |