| 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/gfx/gfx.gyp:gfx', | 17 '../ui/gfx/gfx.gyp:gfx', |
| 18 '../ui/strings/ui_strings.gyp:ui_strings', | 18 '../ui/strings/ui_strings.gyp:ui_strings', |
| 19 ], | 19 ], |
| 20 'export_dependent_settings': [ |
| 21 '../skia/skia.gyp:skia', |
| 22 ], |
| 20 'sources': [ | 23 'sources': [ |
| 21 # Note: sources duplicated in GN build. | 24 # Note: sources duplicated in GN build. |
| 22 'infobars/core/confirm_infobar_delegate.cc', | 25 'infobars/core/confirm_infobar_delegate.cc', |
| 23 'infobars/core/confirm_infobar_delegate.h', | 26 'infobars/core/confirm_infobar_delegate.h', |
| 24 'infobars/core/infobar.cc', | 27 'infobars/core/infobar.cc', |
| 25 'infobars/core/infobar.h', | 28 'infobars/core/infobar.h', |
| 26 'infobars/core/infobar_android.cc', | 29 'infobars/core/infobar_android.cc', |
| 27 'infobars/core/infobar_container.cc', | 30 'infobars/core/infobar_container.cc', |
| 28 'infobars/core/infobar_container.h', | 31 'infobars/core/infobar_container.h', |
| 29 'infobars/core/infobar_delegate.cc', | 32 'infobars/core/infobar_delegate.cc', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 45 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
| 46 '../skia/skia.gyp:skia', | 49 '../skia/skia.gyp:skia', |
| 47 ], | 50 ], |
| 48 'sources': [ | 51 'sources': [ |
| 49 # Note: sources list duplicated in GN build. | 52 # Note: sources list duplicated in GN build. |
| 50 'infobars/test/infobar_test.cc', | 53 'infobars/test/infobar_test.cc', |
| 51 ], | 54 ], |
| 52 }, | 55 }, |
| 53 ], | 56 ], |
| 54 } | 57 } |
| OLD | NEW |