OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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': 'favicon_core', | 8 'target_name': 'favicon_core', |
9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ |
| 11 '..', |
| 12 ], |
10 'sources': [ | 13 'sources': [ |
| 14 'favicon/content/favicon_driver.h', |
11 'favicon/core/favicon_handler_delegate.h', | 15 'favicon/core/favicon_handler_delegate.h', |
12 ], | 16 ], |
13 }, | 17 }, |
14 ], | 18 ], |
| 19 'conditions': [ |
| 20 ['OS != "ios"', { |
| 21 'targets': [ |
| 22 { |
| 23 'target_name': 'favicon_content', |
| 24 'type': 'static_library', |
| 25 'dependencies': [ |
| 26 'favicon_core', |
| 27 '../content/content.gyp:content_browser', |
| 28 '../content/content.gyp:content_common', |
| 29 ], |
| 30 'include_dirs': [ |
| 31 '..', |
| 32 ], |
| 33 'sources': [ |
| 34 'favicon/content/browser/content_favicon_driver.cc', |
| 35 'favicon/content/browser/content_favicon_driver.h', |
| 36 ], |
| 37 }, |
| 38 ], |
| 39 }], |
| 40 ], |
15 } | 41 } |
OLD | NEW |