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, |
| 9 }, |
| 10 'targets': [ |
| 11 { |
| 12 'target_name': 'gfx_x11', |
| 13 'type': 'static_library', |
| 14 'dependencies': [ |
| 15 '../../../base/base.gyp:base', |
| 16 '../gfx.gyp:gfx_geometry', |
| 17 ], |
| 18 'defines': [ |
| 19 'GFX_IMPLEMENTATION', |
| 20 ], |
| 21 'link_settings': { |
| 22 'libraries': [ |
| 23 '-lX11', |
| 24 '-lXi', |
| 25 ], |
| 26 }, |
| 27 'sources': [ |
| 28 'x11_atom_cache.cc', |
| 29 'x11_atom_cache.h', |
| 30 'x11_connection.cc', |
| 31 'x11_connection.h', |
| 32 'x11_error_tracker.cc', |
| 33 'x11_error_tracker.h', |
| 34 'x11_types.cc', |
| 35 'x11_types.h', |
| 36 ], |
| 37 }, |
| 38 ], |
| 39 } |
OLD | NEW |