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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/error_page.gypi
diff --git a/components/error_page.gypi b/components/error_page.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..b83165da489052638ec136fabcda4d4b6a1bf23b
--- /dev/null
+++ b/components/error_page.gypi
@@ -0,0 +1,53 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/error_page/common
+ 'target_name': 'error_page_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'error_page/common/error_page_params.cc',
+ 'error_page/common/error_page_params.h',
+ 'error_page/common/net_error_info.h',
+ 'error_page/common/net_error_info.cc',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['OS != "ios"', {
+ 'targets': [
+ {
+ # GN version: //components/error_page/renderer
+ 'target_name': 'error_page_renderer',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../components/components_strings.gyp:components_strings',
+ '../content/content.gyp:content_common',
+ '../net/net.gyp:net',
+ '../third_party/WebKit/public/blink.gyp:blink',
+ '../ui/base/ui_base.gyp:ui_base',
+ '../url/url.gyp:url_lib',
+ 'error_page_common',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'error_page/renderer/net_error_helper_core.cc',
+ 'error_page/renderer/net_error_helper_core.h',
+ ],
+ }
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698