OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'infobars_core', | 8 'target_name': 'infobars_core', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '..', | 11 '..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
16 '../ui/gfx/gfx.gyp:gfx', | 16 '../ui/gfx/gfx.gyp:gfx', |
17 '../ui/strings/ui_strings.gyp:ui_strings', | 17 '../ui/strings/ui_strings.gyp:ui_strings', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'infobars/core/confirm_infobar_delegate.cc', | 20 'infobars/core/confirm_infobar_delegate.cc', |
21 'infobars/core/confirm_infobar_delegate.h', | 21 'infobars/core/confirm_infobar_delegate.h', |
22 'infobars/core/infobar.cc', | 22 'infobars/core/infobar.cc', |
23 'infobars/core/infobar.h', | 23 'infobars/core/infobar.h', |
| 24 'infobars/core/infobar_android.cc', |
24 'infobars/core/infobar_container.cc', | 25 'infobars/core/infobar_container.cc', |
25 'infobars/core/infobar_container.h', | 26 'infobars/core/infobar_container.h', |
26 'infobars/core/infobar_delegate.cc', | 27 'infobars/core/infobar_delegate.cc', |
27 'infobars/core/infobar_delegate.h', | 28 'infobars/core/infobar_delegate.h', |
28 'infobars/core/infobar_manager.cc', | 29 'infobars/core/infobar_manager.cc', |
29 'infobars/core/infobar_manager.h', | 30 'infobars/core/infobar_manager.h', |
30 'infobars/core/infobars_switches.cc', | 31 'infobars/core/infobars_switches.cc', |
31 'infobars/core/infobars_switches.h', | 32 'infobars/core/infobars_switches.h', |
32 ], | 33 ], |
33 }, | 34 }, |
34 ], | 35 ], |
35 } | 36 } |
OLD | NEW |