• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:dynamic_annotations',
16        '../../skia/skia.gyp:skia',
17        '../gfx/gfx.gyp:gfx',
18        '../resources/ui_resources.gyp:ui_resources',
19        '../ui.gyp:ui',
20      ],
21      'defines': [
22        'NATIVE_THEME_IMPLEMENTATION',
23      ],
24      'sources': [
25        'common_theme.cc',
26        'common_theme.h',
27        'fallback_theme.cc',
28        'fallback_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_base.cc',
36        'native_theme_base.h',
37        'native_theme_gtk.cc',
38        'native_theme_gtk.h',
39        'native_theme_mac.h',
40        'native_theme_mac.mm',
41        'native_theme_win.cc',
42        'native_theme_win.h',
43      ],
44    },
45  ],
46}
47