summaryrefslogtreecommitdiffstats
path: root/athena/main/athena_main.gyp
blob: 21d6e55dcadc68ee888365e168fe4c471ebf314e (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
# 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',
        '../athena.gyp:athena_content_support_lib',
        '../resources/athena_resources.gyp:athena_resources',
	# debug_widow.cc depends on this. Remove this once debug_window
	# is removed.
        '../../ash/ash_resources.gyp:ash_resources',
        '../../chromeos/chromeos.gyp:power_manager_proto',
        '../../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:search_engines',
        '../../skia/skia.gyp:skia',
        '../../ui/app_list/app_list.gyp:app_list',
        '../../ui/chromeos/ui_chromeos.gyp:ui_chromeos',
        '../../ui/native_theme/native_theme.gyp:native_theme',
        '../../ui/views/views.gyp:views',
        '../../url/url.gyp:url_lib',
      ],
      'include_dirs': [
        '../..',
      ],
      'sources': [
        'athena_launcher.cc',
        'athena_launcher.h',
        'debug/debug_window.cc',
        'debug/debug_window.h',
        'debug/network_selector.cc',
        'debug/network_selector.h',
        'url_search_provider.cc',
        'url_search_provider.h',
        'placeholder.cc',
        'placeholder.h',
      ],
    },
    {
      'target_name': 'athena_main',
      'type': 'executable',
      'dependencies': [
        '../../ui/accessibility/accessibility.gyp:ax_gen',
        '../resources/athena_resources.gyp:athena_pak',
	'../../extensions/shell/app_shell.gyp:app_shell_lib',
        'athena_main_lib',
      ],
      'include_dirs': [
        '../..',
      ],
      'sources': [
        'athena_main.cc',
      ],
    }
  ],  # targets
}