| 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 '../../build/linux/system.gyp:frame', |
| 19 '../../build/linux/system.gyp:grail', |
| 18 '../gfx/compositor/compositor.gyp:compositor', | 20 '../gfx/compositor/compositor.gyp:compositor', |
| 19 '../ui.gyp:gfx_resources', | 21 '../ui.gyp:gfx_resources', |
| 20 '../ui.gyp:ui', | 22 '../ui.gyp:ui', |
| 21 '../ui.gyp:ui_resources', | 23 '../ui.gyp:ui_resources', |
| 22 ], | 24 ], |
| 23 'defines': [ | 25 'defines': [ |
| 24 'AURA_IMPLEMENTATION', | 26 'AURA_IMPLEMENTATION', |
| 25 ], | 27 ], |
| 26 'sources': [ | 28 'sources': [ |
| 27 'aura_switches.cc', | 29 'aura_switches.cc', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 56 'env_observer.h', | 58 'env_observer.h', |
| 57 'event.cc', | 59 'event.cc', |
| 58 'event.h', | 60 'event.h', |
| 59 'event_filter.h', | 61 'event_filter.h', |
| 60 'event_mac.mm', | 62 'event_mac.mm', |
| 61 'event_mac.h', | 63 'event_mac.h', |
| 62 'focus_manager.h', | 64 'focus_manager.h', |
| 63 'gestures/gesture_configuration.cc', | 65 'gestures/gesture_configuration.cc', |
| 64 'gestures/gesture_configuration.h', | 66 'gestures/gesture_configuration.h', |
| 65 'gestures/gesture_recognizer.h', | 67 'gestures/gesture_recognizer.h', |
| 66 'gestures/gesture_recognizer_aura.cc', | 68 'gestures/gesture_recognizer_grail.cc', |
| 67 'gestures/gesture_recognizer_aura.h', | 69 'gestures/gesture_recognizer_grail.h', |
| 68 'gestures/gesture_point.cc', | |
| 69 'gestures/gesture_point.h', | |
| 70 'gestures/velocity_calculator.cc', | |
| 71 'gestures/velocity_calculator.h', | |
| 72 'gestures/gesture_sequence.cc', | |
| 73 'gestures/gesture_sequence.h', | |
| 74 'layout_manager.cc', | 70 'layout_manager.cc', |
| 75 'layout_manager.h', | 71 'layout_manager.h', |
| 76 'root_window_host.h', | 72 'root_window_host.h', |
| 77 'root_window_host_linux.cc', | 73 'root_window_host_linux.cc', |
| 78 'root_window_host_linux.h', | 74 'root_window_host_linux.h', |
| 79 'root_window_host_mac.h', | 75 'root_window_host_mac.h', |
| 80 'root_window_host_mac.mm', | 76 'root_window_host_mac.mm', |
| 81 'root_window_host_win.cc', | 77 'root_window_host_win.cc', |
| 82 'root_window_host_win.h', | 78 'root_window_host_win.h', |
| 83 'root_window_mac.h', | 79 'root_window_mac.h', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 # osmesa GL implementation is used on linux. | 191 # osmesa GL implementation is used on linux. |
| 196 ['OS=="linux"', { | 192 ['OS=="linux"', { |
| 197 'dependencies': [ | 193 'dependencies': [ |
| 198 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 194 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 199 ], | 195 ], |
| 200 }], | 196 }], |
| 201 ], | 197 ], |
| 202 }, | 198 }, |
| 203 ], | 199 ], |
| 204 } | 200 } |
| OLD | NEW |