Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 'use_x11': 1, | |
|
piman
2014/05/09 22:42:52
do we need this? seems wrong.
sadrul
2014/05/09 23:00:23
This unfortunately is necessary because otherwise
| |
| 9 }, | |
| 10 | |
| 11 'targets': [ | |
| 12 { | |
| 13 'target_name': 'gfx_x11', | |
| 14 'type': '<(component)', | |
| 15 'dependencies': [ | |
| 16 '../../../base/base.gyp:base', | |
| 17 '../../../build/linux/system.gyp:x11', | |
| 18 ], | |
| 19 'defines': [ | |
| 20 'GFX_IMPLEMENTATION', | |
| 21 ], | |
| 22 'sources': [ | |
| 23 'x11_atom_cache.cc', | |
| 24 'x11_atom_cache.h', | |
| 25 'x11_connection.cc', | |
| 26 'x11_connection.h', | |
| 27 'x11_error_tracker.cc', | |
| 28 'x11_error_tracker.h', | |
| 29 'x11_types.cc', | |
| 30 'x11_types.h', | |
| 31 ], | |
| 32 }, | |
| 33 ] | |
| 34 } | |
| OLD | NEW |