| 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 11 matching lines...) Expand all Loading... |
| 22 'defines': [ | 22 'defines': [ |
| 23 'AURA_IMPLEMENTATION', | 23 'AURA_IMPLEMENTATION', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'client/activation_change_observer.h', | 26 'client/activation_change_observer.h', |
| 27 'client/activation_change_observer.cc', | 27 'client/activation_change_observer.cc', |
| 28 'client/activation_client.cc', | 28 'client/activation_client.cc', |
| 29 'client/activation_client.h', | 29 'client/activation_client.h', |
| 30 'client/activation_delegate.cc', | 30 'client/activation_delegate.cc', |
| 31 'client/activation_delegate.h', | 31 'client/activation_delegate.h', |
| 32 'client/animation_host.cc', |
| 33 'client/animation_host.h', |
| 32 'client/aura_constants.cc', | 34 'client/aura_constants.cc', |
| 33 'client/aura_constants.h', | 35 'client/aura_constants.h', |
| 34 'client/capture_client.cc', | 36 'client/capture_client.cc', |
| 35 'client/capture_client.h', | 37 'client/capture_client.h', |
| 36 'client/capture_delegate.h', | 38 'client/capture_delegate.h', |
| 37 'client/cursor_client.cc', | 39 'client/cursor_client.cc', |
| 38 'client/cursor_client.h', | 40 'client/cursor_client.h', |
| 39 'client/default_capture_client.cc', | 41 'client/default_capture_client.cc', |
| 40 'client/default_capture_client.h', | 42 'client/default_capture_client.h', |
| 41 'client/dispatcher_client.cc', | 43 'client/dispatcher_client.cc', |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 # osmesa GL implementation is used on linux. | 275 # osmesa GL implementation is used on linux. |
| 274 ['OS=="linux"', { | 276 ['OS=="linux"', { |
| 275 'dependencies': [ | 277 'dependencies': [ |
| 276 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 278 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 277 ], | 279 ], |
| 278 }], | 280 }], |
| 279 ], | 281 ], |
| 280 }, | 282 }, |
| 281 ], | 283 ], |
| 282 } | 284 } |
| OLD | NEW |