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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'root_window_host_win.h', | 85 'root_window_host_win.h', |
86 'root_window_mac.h', | 86 'root_window_mac.h', |
87 'root_window_mac.mm', | 87 'root_window_mac.mm', |
88 'root_window_view_mac.h', | 88 'root_window_view_mac.h', |
89 'root_window_view_mac.mm', | 89 'root_window_view_mac.mm', |
90 'root_window.cc', | 90 'root_window.cc', |
91 'root_window.h', | 91 'root_window.h', |
92 'window.cc', | 92 'window.cc', |
93 'window.h', | 93 'window.h', |
94 'window_delegate.h', | 94 'window_delegate.h', |
| 95 'window_destruction_observer.cc', |
| 96 'window_destruction_observer.h', |
95 'window_observer.h', | 97 'window_observer.h', |
96 'window_tracker.cc', | 98 'window_tracker.cc', |
97 'window_tracker.h', | 99 'window_tracker.h', |
98 ], | 100 ], |
99 'conditions': [ | 101 'conditions': [ |
100 ['OS=="mac"', { | 102 ['OS=="mac"', { |
101 'sources/': [ | 103 'sources/': [ |
102 ['exclude', 'client/dispatcher_client.cc'], | 104 ['exclude', 'client/dispatcher_client.cc'], |
103 ['exclude', 'client/dispatcher_client.h'], | 105 ['exclude', 'client/dispatcher_client.h'], |
104 ], | 106 ], |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 # osmesa GL implementation is used on linux. | 273 # osmesa GL implementation is used on linux. |
272 ['OS=="linux"', { | 274 ['OS=="linux"', { |
273 'dependencies': [ | 275 'dependencies': [ |
274 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 276 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
275 ], | 277 ], |
276 }], | 278 }], |
277 ], | 279 ], |
278 }, | 280 }, |
279 ], | 281 ], |
280 } | 282 } |
OLD | NEW |