OLD | NEW |
(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 } |
OLD | NEW |