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

Unified Diff: components/captive_portal.gypi

Issue 242483003: Move CaptivePortalDetector to src/components/captive_portal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 8 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
« no previous file with comments | « chrome/test/base/in_process_browser_test.cc ('k') | components/captive_portal/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/captive_portal.gypi
diff --git a/components/captive_portal.gypi b/components/captive_portal.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..91418e382127f23b947bc0c1e43c4d0f64bb92a4
--- /dev/null
+++ b/components/captive_portal.gypi
@@ -0,0 +1,44 @@
+# 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': [
+ {
+ 'target_name': 'captive_portal',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../url/url.gyp:url_lib',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'defines': [
+ 'CAPTIVE_PORTAL_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'captive_portal/captive_portal_detector.cc',
+ 'captive_portal/captive_portal_detector.h',
+ 'captive_portal/captive_portal_types.cc',
+ 'captive_portal/captive_portal_types.h',
+ 'captive_portal/captive_portal_export.h',
+ ],
+ },
+ {
+ 'target_name': 'captive_portal_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'captive_portal',
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../url/url.gyp:url_lib',
+ ],
+ 'sources': [
+ 'captive_portal/captive_portal_testing_utils.cc',
+ 'captive_portal/captive_portal_testing_utils.h',
+ ],
+ },
+ ],
+}
« no previous file with comments | « chrome/test/base/in_process_browser_test.cc ('k') | components/captive_portal/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698