| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_observer.h', | 103 'window_observer.h', |
| 104 'window_tracker.cc', | 104 'window_tracker.cc', |
| 105 'window_tracker.h', | 105 'window_tracker.h', |
| 106 'window_tree_host.cc', |
| 106 'window_tree_host.h', | 107 'window_tree_host.h', |
| 107 'window_tree_host_delegate.h', | 108 'window_tree_host_delegate.h', |
| 108 ], | 109 ], |
| 109 'conditions': [ | 110 'conditions': [ |
| 110 ['use_x11==1', { | 111 ['use_x11==1', { |
| 111 'link_settings': { | 112 'link_settings': { |
| 112 'libraries': [ | 113 'libraries': [ |
| 113 '-lX11', | 114 '-lX11', |
| 114 '-lXi', | 115 '-lXi', |
| 115 '-lXfixes', | 116 '-lXfixes', |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 ['OS=="linux" and linux_use_tcmalloc==1', { | 310 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 310 'dependencies': [ | 311 'dependencies': [ |
| 311 # See http://crbug.com/162998#c4 for why this is needed. | 312 # See http://crbug.com/162998#c4 for why this is needed. |
| 312 '../../base/allocator/allocator.gyp:allocator', | 313 '../../base/allocator/allocator.gyp:allocator', |
| 313 ], | 314 ], |
| 314 }], | 315 }], |
| 315 ], | 316 ], |
| 316 }, | 317 }, |
| 317 ], | 318 ], |
| 318 } | 319 } |
| OLD | NEW |