| 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 { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'event.h', | 55 'event.h', |
| 56 'event_filter.h', | 56 'event_filter.h', |
| 57 'event_mac.mm', | 57 'event_mac.mm', |
| 58 'event_mac.h', | 58 'event_mac.h', |
| 59 'focus_manager.h', | 59 'focus_manager.h', |
| 60 'gestures/gesture_recognizer.h', | 60 'gestures/gesture_recognizer.h', |
| 61 'gestures/gesture_recognizer_aura.cc', | 61 'gestures/gesture_recognizer_aura.cc', |
| 62 'gestures/gesture_recognizer_aura.h', | 62 'gestures/gesture_recognizer_aura.h', |
| 63 'gestures/gesture_point.cc', | 63 'gestures/gesture_point.cc', |
| 64 'gestures/gesture_point.h', | 64 'gestures/gesture_point.h', |
| 65 'gestures/velocity_calculator.cc', |
| 66 'gestures/velocity_calculator.h', |
| 65 'gestures/gesture_sequence.cc', | 67 'gestures/gesture_sequence.cc', |
| 66 'gestures/gesture_sequence.h', | 68 'gestures/gesture_sequence.h', |
| 67 'layout_manager.cc', | 69 'layout_manager.cc', |
| 68 'layout_manager.h', | 70 'layout_manager.h', |
| 69 'root_window_host.h', | 71 'root_window_host.h', |
| 70 'root_window_host_linux.cc', | 72 'root_window_host_linux.cc', |
| 71 'root_window_host_mac.h', | 73 'root_window_host_mac.h', |
| 72 'root_window_host_mac.mm', | 74 'root_window_host_mac.mm', |
| 73 'root_window_host_win.cc', | 75 'root_window_host_win.cc', |
| 74 'root_window_host_win.h', | 76 'root_window_host_win.h', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 '../ui.gyp:ui', | 155 '../ui.gyp:ui', |
| 154 '../ui.gyp:ui_resources', | 156 '../ui.gyp:ui_resources', |
| 155 'test_support_aura', | 157 'test_support_aura', |
| 156 'aura', | 158 'aura', |
| 157 ], | 159 ], |
| 158 'include_dirs': [ | 160 'include_dirs': [ |
| 159 '..', | 161 '..', |
| 160 ], | 162 ], |
| 161 'sources': [ | 163 'sources': [ |
| 162 'gestures/gesture_recognizer_unittest.cc', | 164 'gestures/gesture_recognizer_unittest.cc', |
| 165 'gestures/velocity_calculator_unittest.cc', |
| 163 'test/run_all_unittests.cc', | 166 'test/run_all_unittests.cc', |
| 164 'test/test_suite.cc', | 167 'test/test_suite.cc', |
| 165 'test/test_suite.h', | 168 'test/test_suite.h', |
| 166 'root_window_unittest.cc', | 169 'root_window_unittest.cc', |
| 167 'event_filter_unittest.cc', | 170 'event_filter_unittest.cc', |
| 168 'event_unittest.cc', | 171 'event_unittest.cc', |
| 169 'window_unittest.cc', | 172 'window_unittest.cc', |
| 170 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 173 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 171 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 174 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 172 ], | 175 ], |
| 173 'conditions': [ | 176 'conditions': [ |
| 174 # osmesa GL implementation is used on linux. | 177 # osmesa GL implementation is used on linux. |
| 175 ['OS=="linux"', { | 178 ['OS=="linux"', { |
| 176 'dependencies': [ | 179 'dependencies': [ |
| 177 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 180 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 178 ], | 181 ], |
| 179 }], | 182 }], |
| 180 ], | 183 ], |
| 181 }, | 184 }, |
| 182 ], | 185 ], |
| 183 } | 186 } |
| OLD | NEW |