OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'use_x11': 1, # It is necessary to explicitly set use_x11 here to make sure | 8 'use_x11': 1, # It is necessary to explicitly set use_x11 here to make sure |
9 # that the exclusion rules in filename_rules.gypi do not | 9 # that the exclusion rules in filename_rules.gypi do not |
10 # exclude the x11* files. | 10 # exclude the x11* files. |
(...skipping 10 matching lines...) Expand all Loading... |
21 'defines': [ | 21 'defines': [ |
22 'GFX_IMPLEMENTATION', | 22 'GFX_IMPLEMENTATION', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 'x11_atom_cache.cc', | 25 'x11_atom_cache.cc', |
26 'x11_atom_cache.h', | 26 'x11_atom_cache.h', |
27 'x11_connection.cc', | 27 'x11_connection.cc', |
28 'x11_connection.h', | 28 'x11_connection.h', |
29 'x11_error_tracker.cc', | 29 'x11_error_tracker.cc', |
30 'x11_error_tracker.h', | 30 'x11_error_tracker.h', |
| 31 'x11_switches.cc', |
| 32 'x11_switches.h', |
31 'x11_types.cc', | 33 'x11_types.cc', |
32 'x11_types.h', | 34 'x11_types.h', |
33 ], | 35 ], |
34 }, | 36 }, |
35 ] | 37 ] |
36 } | 38 } |
OLD | NEW |