| 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 # GN version: //components/infobars/core | 8 # GN version: //components/infobars/core |
| 9 'target_name': 'infobars_core', | 9 'target_name': 'infobars_core', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
| 16 '../skia/skia.gyp:skia', | 16 '../skia/skia.gyp:skia', |
| 17 '../ui/base/ui_base.gyp:ui_base', | 17 '../ui/base/ui_base.gyp:ui_base', |
| 18 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
| 19 '../ui/strings/ui_strings.gyp:ui_strings', | 19 '../ui/strings/ui_strings.gyp:ui_strings', |
| 20 ], | 20 ], |
| 21 'export_dependent_settings': [ | 21 'export_dependent_settings': [ |
| 22 '../skia/skia.gyp:skia', | 22 '../skia/skia.gyp:skia', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 # Note: sources duplicated in GN build. | 25 # Note: sources duplicated in GN build. |
| 26 'infobars/core/confirm_infobar_delegate.cc', | 26 'infobars/core/confirm_infobar_delegate.cc', |
| 27 'infobars/core/confirm_infobar_delegate.h', | 27 'infobars/core/confirm_infobar_delegate.h', |
| 28 'infobars/core/infobar.cc', | 28 'infobars/core/infobar.cc', |
| 29 'infobars/core/infobar.h', | 29 'infobars/core/infobar.h', |
| 30 'infobars/core/infobar_android.cc', | |
| 31 'infobars/core/infobar_container.cc', | 30 'infobars/core/infobar_container.cc', |
| 32 'infobars/core/infobar_container.h', | 31 'infobars/core/infobar_container.h', |
| 33 'infobars/core/infobar_delegate.cc', | 32 'infobars/core/infobar_delegate.cc', |
| 34 'infobars/core/infobar_delegate.h', | 33 'infobars/core/infobar_delegate.h', |
| 35 'infobars/core/infobar_manager.cc', | 34 'infobars/core/infobar_manager.cc', |
| 36 'infobars/core/infobar_manager.h', | 35 'infobars/core/infobar_manager.h', |
| 37 'infobars/core/infobars_switches.cc', | 36 'infobars/core/infobars_switches.cc', |
| 38 'infobars/core/infobars_switches.h', | 37 'infobars/core/infobars_switches.h', |
| 39 ], | 38 ], |
| 40 }, | 39 }, |
| 41 { | 40 { |
| 42 # GN version: //components/infobars/test:test_support | 41 # GN version: //components/infobars/test:test_support |
| 43 'target_name': 'infobars_test_support', | 42 'target_name': 'infobars_test_support', |
| 44 'type': 'static_library', | 43 'type': 'static_library', |
| 45 'include_dirs': [ | 44 'include_dirs': [ |
| 46 '..', | 45 '..', |
| 47 ], | 46 ], |
| 48 'dependencies': [ | 47 'dependencies': [ |
| 49 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
| 50 '../skia/skia.gyp:skia', | 49 '../skia/skia.gyp:skia', |
| 51 ], | 50 ], |
| 52 'sources': [ | 51 'sources': [ |
| 53 # Note: sources list duplicated in GN build. | 52 # Note: sources list duplicated in GN build. |
| 54 'infobars/test/infobar_test.cc', | 53 'infobars/test/infobar_test.cc', |
| 55 ], | 54 ], |
| 56 }, | 55 }, |
| 57 ], | 56 ], |
| 58 } | 57 } |
| OLD | NEW |