blob: a0e36a0052c45e914aa31b66e41016e3bc1d551a [file] [log] [blame]
[email protected]051655ad2014-04-18 15:09:411# Copyright 2014 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 'targets': [
7 {
[email protected]ce9926c2014-07-16 21:41:518 # GN version: //components/infobars/core
[email protected]051655ad2014-04-18 15:09:419 'target_name': 'infobars_core',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../skia/skia.gyp:skia',
brettw81d760e2014-11-25 20:30:1017 '../ui/base/ui_base.gyp:ui_base',
[email protected]051655ad2014-04-18 15:09:4118 '../ui/gfx/gfx.gyp:gfx',
[email protected]f9b21602014-05-22 00:53:1219 '../ui/strings/ui_strings.gyp:ui_strings',
[email protected]051655ad2014-04-18 15:09:4120 ],
droger19317382014-10-13 18:37:5121 'export_dependent_settings': [
22 '../skia/skia.gyp:skia',
23 ],
[email protected]051655ad2014-04-18 15:09:4124 'sources': [
[email protected]ce9926c2014-07-16 21:41:5125 # Note: sources duplicated in GN build.
[email protected]f9b21602014-05-22 00:53:1226 'infobars/core/confirm_infobar_delegate.cc',
27 'infobars/core/confirm_infobar_delegate.h',
[email protected]051655ad2014-04-18 15:09:4128 'infobars/core/infobar.cc',
29 'infobars/core/infobar.h',
[email protected]051655ad2014-04-18 15:09:4130 'infobars/core/infobar_container.cc',
31 'infobars/core/infobar_container.h',
32 'infobars/core/infobar_delegate.cc',
33 'infobars/core/infobar_delegate.h',
34 'infobars/core/infobar_manager.cc',
35 'infobars/core/infobar_manager.h',
36 'infobars/core/infobars_switches.cc',
37 'infobars/core/infobars_switches.h',
sdefresneb49f5512014-12-30 00:21:4738 'infobars/core/simple_alert_infobar_delegate.cc',
39 'infobars/core/simple_alert_infobar_delegate.h',
[email protected]051655ad2014-04-18 15:09:4140 ],
estade3feb83f2015-09-01 23:00:4941 'conditions': [
42 ['OS != "ios" and OS != "android"', {
43 'dependencies': [
44 '../ui/gfx/gfx.gyp:gfx_vector_icons',
45 '../ui/native_theme/native_theme.gyp:native_theme',
46 ],
47 }],
48 ],
[email protected]051655ad2014-04-18 15:09:4149 },
[email protected]051655ad2014-04-18 15:09:4150 ],
dfalcantara7e344082016-01-21 21:39:0051 'conditions': [
52 ['OS == "android"', {
53 'targets': [
54 {
55 'target_name': 'infobar_delegate_java',
56 'type': 'none',
57 'variables': {
58 'source_file': 'infobars/core/infobar_delegate.h',
59 },
60 'includes': [ '../build/android/java_cpp_enum.gypi' ],
61 },
62 ],
63 }],
64 ],
[email protected]051655ad2014-04-18 15:09:4165}