summaryrefslogtreecommitdiffstats
path: root/ui/shell_dialogs.gypi
blob: 2675d73ab8ea0be95e188f47c094abc90ef3d831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'shell_dialogs',
      'type': '<(component)',
      'dependencies': [
        '../base/base.gyp:base',
        '../base/base.gyp:base_i18n',
        'base/strings/ui_strings.gyp:ui_strings',
        '../skia/skia.gyp:skia',
        'ui',
      ],
      'defines': [
        'SHELL_DIALOGS_IMPLEMENTATION',
      ],
      'sources': [
        'shell_dialogs/android/shell_dialogs_jni_registrar.cc',
        'shell_dialogs/android/shell_dialogs_jni_registrar.h',
        'shell_dialogs/base_shell_dialog.cc',
        'shell_dialogs/base_shell_dialog.h',
        'shell_dialogs/base_shell_dialog_win.cc',
        'shell_dialogs/base_shell_dialog_win.h',
        'shell_dialogs/gtk/select_file_dialog_impl.cc',
        'shell_dialogs/gtk/select_file_dialog_impl.h',
        'shell_dialogs/gtk/select_file_dialog_impl_gtk.cc',
        'shell_dialogs/gtk/select_file_dialog_impl_kde.cc',
        'shell_dialogs/linux_shell_dialog.cc',
        'shell_dialogs/linux_shell_dialog.h',
        'shell_dialogs/select_file_dialog.cc',
        'shell_dialogs/select_file_dialog.h',
        'shell_dialogs/select_file_dialog_android.cc',
        'shell_dialogs/select_file_dialog_android.h',
        'shell_dialogs/select_file_dialog_factory.cc',
        'shell_dialogs/select_file_dialog_factory.h',
        'shell_dialogs/select_file_dialog_mac.h',
        'shell_dialogs/select_file_dialog_mac.mm',
        'shell_dialogs/select_file_dialog_win.cc',
        'shell_dialogs/select_file_dialog_win.h',
        'shell_dialogs/select_file_policy.cc',
        'shell_dialogs/select_file_policy.h',
        'shell_dialogs/selected_file_info.cc',
        'shell_dialogs/selected_file_info.h',
      ],
      'include_dirs': [
        '../',
      ],
      'conditions': [
        ['use_aura==1', {
          'dependencies': [
            'aura/aura.gyp:aura',
          ],
          'sources/': [
            ['exclude', 'shell_dialogs/select_file_dialog_mac.mm'],
           ],
        }],
        ['OS=="android"', {
          'dependencies': [
            'ui_jni_headers',
          ],
          'include_dirs': [
            '<(SHARED_INTERMEDIATE_DIR)/ui',
          ],
          'link_settings': {
            'libraries': [
              '-ljnigraphics',
            ],
          },
        }],
        ['OS=="android" and android_webview_build==0', {
          'dependencies': [
            'ui_java',
          ],
        }],
      ],
    },  # target_name: shell_dialogs
  ],
}