OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
9 'targets': [ | |
10 { | |
11 'target_name': 'native_theme', | |
12 'type': '<(component)', | |
13 'dependencies': [ | |
14 '../../base/base.gyp:base', | |
15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | |
16 '../../skia/skia.gyp:skia', | |
17 '../base/ui_base.gyp:ui_base', | |
18 '../display/display.gyp:display', | |
19 '../gfx/gfx.gyp:gfx', | |
20 '../gfx/gfx.gyp:gfx_geometry', | |
21 '../resources/ui_resources.gyp:ui_resources', | |
22 ], | |
23 'defines': [ | |
24 'NATIVE_THEME_IMPLEMENTATION', | |
25 ], | |
26 'sources': [ | |
27 'common_theme.cc', | |
28 'common_theme.h', | |
29 'native_theme.cc', | |
30 'native_theme.h', | |
31 'native_theme_android.cc', | |
32 'native_theme_android.h', | |
33 'native_theme_aura.cc', | |
34 'native_theme_aura.h', | |
35 'native_theme_aurawin.cc', | |
36 'native_theme_aurawin.h', | |
37 'native_theme_base.cc', | |
38 'native_theme_base.h', | |
39 'native_theme_dark_aura.cc', | |
40 'native_theme_dark_aura.h', | |
41 'native_theme_dark_win.cc', | |
42 'native_theme_dark_win.h', | |
43 'native_theme_mac.h', | |
44 'native_theme_mac.mm', | |
45 'native_theme_observer.cc', | |
46 'native_theme_observer.h', | |
47 'native_theme_switches.cc', | |
48 'native_theme_switches.h', | |
49 'native_theme_win.cc', | |
50 'native_theme_win.h', | |
51 ], | |
52 }, | |
53 { | |
54 'target_name': 'native_theme_unittests', | |
55 'type': '<(gtest_target_type)', | |
56 'dependencies': [ | |
57 '../../base/base.gyp:base', | |
58 '../../base/base.gyp:test_support_base', | |
59 '../../skia/skia.gyp:skia', | |
60 '../../testing/gtest.gyp:gtest', | |
61 '../base/ui_base.gyp:ui_base', | |
62 '../gfx/gfx.gyp:gfx_geometry', | |
63 'native_theme', | |
64 ], | |
65 'sources': [ | |
66 '../../base/test/run_all_unittests.cc', | |
67 'native_theme_aura_unittest.cc', | |
68 'native_theme_mac_unittest.cc', | |
69 ], | |
70 }, | |
71 ], | |
72 } | |
OLD | NEW |