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

Side by Side 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, 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/in_process_browser_test.cc ('k') | components/captive_portal/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'target_name': 'captive_portal',
9 'type': '<(component)',
10 'dependencies': [
11 '../base/base.gyp:base',
12 '../net/net.gyp:net',
13 '../url/url.gyp:url_lib',
14 ],
15 'include_dirs': [
16 '..',
17 ],
18 'defines': [
19 'CAPTIVE_PORTAL_IMPLEMENTATION',
20 ],
21 'sources': [
22 'captive_portal/captive_portal_detector.cc',
23 'captive_portal/captive_portal_detector.h',
24 'captive_portal/captive_portal_types.cc',
25 'captive_portal/captive_portal_types.h',
26 'captive_portal/captive_portal_export.h',
27 ],
28 },
29 {
30 'target_name': 'captive_portal_test_support',
31 'type': 'static_library',
32 'dependencies': [
33 'captive_portal',
34 '../base/base.gyp:base',
35 '../net/net.gyp:net',
36 '../url/url.gyp:url_lib',
37 ],
38 'sources': [
39 'captive_portal/captive_portal_testing_utils.cc',
40 'captive_portal/captive_portal_testing_utils.h',
41 ],
42 },
43 ],
44 }
OLDNEW
« 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