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

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: Move CaptivePortalDetector to a component 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 unified diff | Download patch | Annotate | Revision Log
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': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../net/net.gyp:net',
16 '../url/url.gyp:url_lib',
17 ],
18 'sources': [
19 'captive_portal/captive_portal_detector.cc',
20 'captive_portal/captive_portal_detector.h',
21 'captive_portal/captive_portal_types.cc',
22 'captive_portal/captive_portal_types.h',
23 ],
24 },
25 {
26 'target_name': 'captive_portal_test_support',
27 'type': 'static_library',
28 'dependencies': [
29 'captive_portal',
30 '../base/base.gyp:base',
31 '../net/net.gyp:net',
32 '../url/url.gyp:url_lib',
33 ],
34 'sources': [
35 'captive_portal/captive_portal_testing_utils.cc',
36 'captive_portal/captive_portal_testing_utils.h',
37 ],
38 },
39 ],
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698