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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'root_window_host_win.cc', | 93 'root_window_host_win.cc', |
94 'root_window_host_win.h', | 94 'root_window_host_win.h', |
95 'root_window_host_x11.cc', | 95 'root_window_host_x11.cc', |
96 'root_window_host_x11.h', | 96 'root_window_host_x11.h', |
97 'root_window_transformer.h', | 97 'root_window_transformer.h', |
98 'root_window.cc', | 98 'root_window.cc', |
99 'root_window.h', | 99 'root_window.h', |
100 'window.cc', | 100 'window.cc', |
101 'window.h', | 101 'window.h', |
102 'window_delegate.h', | 102 'window_delegate.h', |
| 103 'window_layer_type.h', |
103 'window_observer.h', | 104 'window_observer.h', |
104 'window_tracker.cc', | 105 'window_tracker.cc', |
105 'window_tracker.h', | 106 'window_tracker.h', |
106 'window_tree_host.cc', | 107 'window_tree_host.cc', |
107 'window_tree_host.h', | 108 'window_tree_host.h', |
108 'window_tree_host_delegate.h', | 109 'window_tree_host_delegate.h', |
109 ], | 110 ], |
110 'conditions': [ | 111 'conditions': [ |
111 ['use_x11==1', { | 112 ['use_x11==1', { |
112 'link_settings': { | 113 'link_settings': { |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 ['OS=="linux" and linux_use_tcmalloc==1', { | 311 ['OS=="linux" and linux_use_tcmalloc==1', { |
311 'dependencies': [ | 312 'dependencies': [ |
312 # See http://crbug.com/162998#c4 for why this is needed. | 313 # See http://crbug.com/162998#c4 for why this is needed. |
313 '../../base/allocator/allocator.gyp:allocator', | 314 '../../base/allocator/allocator.gyp:allocator', |
314 ], | 315 ], |
315 }], | 316 }], |
316 ], | 317 ], |
317 }, | 318 }, |
318 ], | 319 ], |
319 } | 320 } |
OLD | NEW |