summaryrefslogtreecommitdiff
path: root/athena/main/athena_main.gyp
blob: a14df3701f536f76f84455a1f71b451e8646fc7e (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
# Copyright 2014 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.

{
  'variables': {
    'chromium_code': 1,
  },
  'targets': [
    {
      'target_name': 'athena_main_lib',
      'type': 'static_library',
      'dependencies': [
        '../athena.gyp:athena_lib',
        '../athena.gyp:athena_content_lib',
        '../resources/athena_resources.gyp:athena_resources',
        '../../components/components.gyp:component_metrics_proto',
        '../../components/components.gyp:history_core_browser',
        # infobars_test_support is required to declare some symbols used in the
        # search_engines and its dependencies. See crbug.com/386171
        # TODO(mukai): declare those symbols for Athena.
        '../../components/components.gyp:infobars_test_support',
        '../../components/components.gyp:omnibox',
        '../../components/components.gyp:pdf_renderer',
        '../../components/components.gyp:search_engines',
        '../../pdf/pdf.gyp:pdf',
        '../../skia/skia.gyp:skia',
        '../../ui/app_list/app_list.gyp:app_list',
        '../../ui/native_theme/native_theme.gyp:native_theme',
        '../../ui/views/views.gyp:views',
        '../../url/url.gyp:url_lib',
      ],
      'include_dirs': [
        '../..',
      ],
      'sources': [
        'athena_content_client.cc',
        'athena_content_client.h',
        'athena_frame_view.cc',
        'athena_frame_view.h',
        'athena_launcher.cc',
        'athena_main_delegate.cc',
        'athena_main_delegate.h',
        'athena_renderer_pdf_helper.cc',
        'athena_renderer_pdf_helper.h',
        'athena_views_delegate.cc',
        'athena_views_delegate.h',
        'debug_accelerator_handler.cc',
        'debug_accelerator_handler.h',
        'placeholder.cc',
        'placeholder.h',
        'public/athena_launcher.h',
      ],
    },
    {
      'target_name': 'athena_main',
      'type': 'executable',
      'dependencies': [
        '../../ui/accessibility/accessibility.gyp:ax_gen',
        '../athena.gyp:athena_app_shell_lib',
        '../resources/athena_resources.gyp:athena_pak',
        'athena_main_lib',
      ],
      'include_dirs': [
        '../..',
      ],
      'sources': [
        'athena_main.cc',
      ],
    }
  ],  # targets
}