Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: components/error_page.gypi

Issue 570253002: Componentize NetErrorHelperCore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Win64 Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698