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 { |
11 'target_name': 'native_theme', | 11 'target_name': 'linux_ui', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
16 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
17 '../ui.gyp:ui', | 17 '../ui.gyp:ui', |
18 '../ui.gyp:ui_resources', | 18 '../ui.gyp:ui_resources', |
| 19 '../native_theme/native_theme.gyp:native_theme', |
19 ], | 20 ], |
20 'defines': [ | 21 'defines': [ |
21 'NATIVE_THEME_IMPLEMENTATION', | 22 'LINUX_UI_IMPLEMENTATION', |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
24 'common_theme.cc', | 25 'linux_ui.cc', |
25 'common_theme.h', | 26 'linux_ui.h', |
26 'native_theme.cc', | 27 'linux_ui_export.h', |
27 'native_theme.h', | |
28 'native_theme_android.cc', | |
29 'native_theme_android.h', | |
30 'native_theme_aura.cc', | |
31 'native_theme_aura.h', | |
32 'native_theme_base.cc', | |
33 'native_theme_base.h', | |
34 'native_theme_gtk.cc', | |
35 'native_theme_gtk.h', | |
36 'native_theme_mac.h', | |
37 'native_theme_mac.mm', | |
38 'native_theme_win.cc', | |
39 'native_theme_win.h', | |
40 ], | 28 ], |
41 }, | 29 }, |
42 ], | 30 ], |
43 } | 31 } |
OLD | NEW |