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': 'native_theme', |
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 '../base/ui_base.gyp:ui_base', | 17 '../base/ui_base.gyp:ui_base', |
| 18 '../display/display.gyp:display', |
18 '../gfx/gfx.gyp:gfx', | 19 '../gfx/gfx.gyp:gfx', |
19 '../gfx/gfx.gyp:gfx_geometry', | 20 '../gfx/gfx.gyp:gfx_geometry', |
20 '../resources/ui_resources.gyp:ui_resources', | 21 '../resources/ui_resources.gyp:ui_resources', |
21 ], | 22 ], |
22 'defines': [ | 23 'defines': [ |
23 'NATIVE_THEME_IMPLEMENTATION', | 24 'NATIVE_THEME_IMPLEMENTATION', |
24 ], | 25 ], |
25 'sources': [ | 26 'sources': [ |
26 'common_theme.cc', | 27 'common_theme.cc', |
27 'common_theme.h', | 28 'common_theme.h', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 '../../testing/gtest.gyp:gtest', | 60 '../../testing/gtest.gyp:gtest', |
60 'native_theme', | 61 'native_theme', |
61 ], | 62 ], |
62 'sources': [ | 63 'sources': [ |
63 '../../base/test/run_all_unittests.cc', | 64 '../../base/test/run_all_unittests.cc', |
64 'native_theme_mac_unittest.cc', | 65 'native_theme_mac_unittest.cc', |
65 ], | 66 ], |
66 }, | 67 }, |
67 ], | 68 ], |
68 } | 69 } |
OLD | NEW |