| OLD | NEW |
| (Empty) |
| 1 # Copyright 2016 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 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 # GN version: //ui/base/x | |
| 12 'target_name': 'ui_base_x', | |
| 13 'type': '<(component)', | |
| 14 'all_dependent_settings': { | |
| 15 'ldflags': [ | |
| 16 '-L<(PRODUCT_DIR)', | |
| 17 ], | |
| 18 }, | |
| 19 'dependencies': [ | |
| 20 '<(DEPTH)/base/base.gyp:base', | |
| 21 '<(DEPTH)/base/base.gyp:base_i18n', | |
| 22 '<(DEPTH)/build/linux/system.gyp:x11', | |
| 23 '<(DEPTH)/build/linux/system.gyp:xcursor', | |
| 24 '<(DEPTH)/build/linux/system.gyp:xext', | |
| 25 '<(DEPTH)/build/linux/system.gyp:xfixes', | |
| 26 '<(DEPTH)/build/linux/system.gyp:xrender', # For XRender* function call
s in x11_util.cc. | |
| 27 '<(DEPTH)/skia/skia.gyp:skia', | |
| 28 '../../events/events.gyp:events', | |
| 29 '../../events/devices/x11/events_devices_x11.gyp:events_devices_x11', | |
| 30 '../../gfx/gfx.gyp:gfx', | |
| 31 '../../gfx/gfx.gyp:gfx_geometry', | |
| 32 '../../gfx/x/gfx_x11.gyp:gfx_x11', | |
| 33 ], | |
| 34 'defines': [ | |
| 35 'UI_BASE_X_IMPLEMENTATION', | |
| 36 ], | |
| 37 'sources': [ | |
| 38 'ui_base_x_export.h', | |
| 39 'x11_foreign_window_manager.cc', | |
| 40 'x11_foreign_window_manager.h', | |
| 41 'x11_menu_list.cc', | |
| 42 'x11_menu_list.h', | |
| 43 'x11_util.cc', | |
| 44 'x11_util.h', | |
| 45 'x11_util_internal.h', | |
| 46 ], | |
| 47 }, | |
| 48 ], | |
| 49 } | |
| OLD | NEW |