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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 'gestures/gesture_recognizer_aura.cc', | 66 'gestures/gesture_recognizer_aura.cc', |
67 'gestures/gesture_recognizer_aura.h', | 67 'gestures/gesture_recognizer_aura.h', |
68 'gestures/gesture_point.cc', | 68 'gestures/gesture_point.cc', |
69 'gestures/gesture_point.h', | 69 'gestures/gesture_point.h', |
70 'gestures/velocity_calculator.cc', | 70 'gestures/velocity_calculator.cc', |
71 'gestures/velocity_calculator.h', | 71 'gestures/velocity_calculator.h', |
72 'gestures/gesture_sequence.cc', | 72 'gestures/gesture_sequence.cc', |
73 'gestures/gesture_sequence.h', | 73 'gestures/gesture_sequence.h', |
74 'layout_manager.cc', | 74 'layout_manager.cc', |
75 'layout_manager.h', | 75 'layout_manager.h', |
| 76 'monitor.cc', |
| 77 'monitor.h', |
| 78 'monitor_manager.cc', |
| 79 'monitor_manager.h', |
76 'root_window_host.h', | 80 'root_window_host.h', |
77 'root_window_host_linux.cc', | 81 'root_window_host_linux.cc', |
78 'root_window_host_linux.h', | 82 'root_window_host_linux.h', |
79 'root_window_host_mac.h', | 83 'root_window_host_mac.h', |
80 'root_window_host_mac.mm', | 84 'root_window_host_mac.mm', |
81 'root_window_host_win.cc', | 85 'root_window_host_win.cc', |
82 'root_window_host_win.h', | 86 'root_window_host_win.h', |
83 'root_window_mac.h', | 87 'root_window_mac.h', |
84 'root_window_mac.mm', | 88 'root_window_mac.mm', |
85 'root_window_view_mac.h', | 89 'root_window_view_mac.h', |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 # osmesa GL implementation is used on linux. | 199 # osmesa GL implementation is used on linux. |
196 ['OS=="linux"', { | 200 ['OS=="linux"', { |
197 'dependencies': [ | 201 'dependencies': [ |
198 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 202 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
199 ], | 203 ], |
200 }], | 204 }], |
201 ], | 205 ], |
202 }, | 206 }, |
203 ], | 207 ], |
204 } | 208 } |
OLD | NEW |