OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN version: //components/error_page/common |
| 9 'target_name': 'error_page_common', |
| 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '../base/base.gyp:base', |
| 13 ], |
| 14 'include_dirs': [ |
| 15 '..', |
| 16 ], |
| 17 'sources': [ |
| 18 'error_page/common/error_page_params.cc', |
| 19 'error_page/common/error_page_params.h', |
| 20 'error_page/common/net_error_info.h', |
| 21 'error_page/common/net_error_info.cc', |
| 22 ], |
| 23 }, |
| 24 ], |
| 25 'conditions': [ |
| 26 ['OS != "ios"', { |
| 27 'targets': [ |
| 28 { |
| 29 # GN version: //components/error_page/renderer |
| 30 'target_name': 'error_page_renderer', |
| 31 'type': 'static_library', |
| 32 'dependencies': [ |
| 33 '../base/base.gyp:base', |
| 34 '../components/components_strings.gyp:components_strings', |
| 35 '../content/content.gyp:content_common', |
| 36 '../net/net.gyp:net', |
| 37 '../third_party/WebKit/public/blink.gyp:blink', |
| 38 '../ui/base/ui_base.gyp:ui_base', |
| 39 '../url/url.gyp:url_lib', |
| 40 'error_page_common', |
| 41 ], |
| 42 'include_dirs': [ |
| 43 '..', |
| 44 ], |
| 45 'sources': [ |
| 46 'error_page/renderer/net_error_helper_core.cc', |
| 47 'error_page/renderer/net_error_helper_core.h', |
| 48 ], |
| 49 } |
| 50 ], |
| 51 }], |
| 52 ], |
| 53 } |
OLD | NEW |