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 { |
(...skipping 17 matching lines...) Expand all Loading... |
28 'native_theme.cc', | 28 'native_theme.cc', |
29 'native_theme.h', | 29 'native_theme.h', |
30 'native_theme_android.cc', | 30 'native_theme_android.cc', |
31 'native_theme_android.h', | 31 'native_theme_android.h', |
32 'native_theme_aura.cc', | 32 'native_theme_aura.cc', |
33 'native_theme_aura.h', | 33 'native_theme_aura.h', |
34 'native_theme_aurawin.cc', | 34 'native_theme_aurawin.cc', |
35 'native_theme_aurawin.h', | 35 'native_theme_aurawin.h', |
36 'native_theme_base.cc', | 36 'native_theme_base.cc', |
37 'native_theme_base.h', | 37 'native_theme_base.h', |
| 38 'native_theme_dark_aura.cc', |
| 39 'native_theme_dark_aura.h', |
| 40 'native_theme_dark_win.cc', |
| 41 'native_theme_dark_win.h', |
38 'native_theme_mac.h', | 42 'native_theme_mac.h', |
39 'native_theme_mac.mm', | 43 'native_theme_mac.mm', |
40 'native_theme_observer.cc', | 44 'native_theme_observer.cc', |
41 'native_theme_observer.h', | 45 'native_theme_observer.h', |
42 'native_theme_switches.cc', | 46 'native_theme_switches.cc', |
43 'native_theme_switches.h', | 47 'native_theme_switches.h', |
44 'native_theme_win.cc', | 48 'native_theme_win.cc', |
45 'native_theme_win.h', | 49 'native_theme_win.h', |
46 ], | 50 ], |
47 }, | 51 }, |
48 { | 52 { |
49 'target_name': 'native_theme_unittests', | 53 'target_name': 'native_theme_unittests', |
50 'type': '<(gtest_target_type)', | 54 'type': '<(gtest_target_type)', |
51 'dependencies': [ | 55 'dependencies': [ |
52 '../../base/base.gyp:base', | 56 '../../base/base.gyp:base', |
53 '../../base/base.gyp:test_support_base', | 57 '../../base/base.gyp:test_support_base', |
54 '../../skia/skia.gyp:skia', | 58 '../../skia/skia.gyp:skia', |
55 '../../testing/gtest.gyp:gtest', | 59 '../../testing/gtest.gyp:gtest', |
56 'native_theme', | 60 'native_theme', |
57 ], | 61 ], |
58 'sources': [ | 62 'sources': [ |
59 '../../base/test/run_all_unittests.cc', | 63 '../../base/test/run_all_unittests.cc', |
60 'native_theme_mac_unittest.cc', | 64 'native_theme_mac_unittest.cc', |
61 ], | 65 ], |
62 }, | 66 }, |
63 ], | 67 ], |
64 } | 68 } |
OLD | NEW |