OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2009 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 # TODO(mark): Upstream this file to googleurl. |
| 6 { |
| 7 'variables': { |
| 8 'chromium_code': 1, |
| 9 }, |
| 10 'includes': [ |
| 11 '../common.gypi', |
| 12 ], |
| 13 'targets': [ |
| 14 { |
| 15 'target_name': 'googleurl', |
| 16 'type': 'static_library', |
| 17 'sources': [ |
| 18 '../../googleurl/src/gurl.cc', |
| 19 '../../googleurl/src/gurl.h', |
| 20 '../../googleurl/src/url_canon.h', |
| 21 '../../googleurl/src/url_canon_etc.cc', |
| 22 '../../googleurl/src/url_canon_fileurl.cc', |
| 23 '../../googleurl/src/url_canon_host.cc', |
| 24 '../../googleurl/src/url_canon_icu.cc', |
| 25 '../../googleurl/src/url_canon_icu.h', |
| 26 '../../googleurl/src/url_canon_internal.cc', |
| 27 '../../googleurl/src/url_canon_internal.h', |
| 28 '../../googleurl/src/url_canon_internal_file.h', |
| 29 '../../googleurl/src/url_canon_ip.cc', |
| 30 '../../googleurl/src/url_canon_ip.h', |
| 31 '../../googleurl/src/url_canon_mailtourl.cc', |
| 32 '../../googleurl/src/url_canon_path.cc', |
| 33 '../../googleurl/src/url_canon_pathurl.cc', |
| 34 '../../googleurl/src/url_canon_query.cc', |
| 35 '../../googleurl/src/url_canon_relative.cc', |
| 36 '../../googleurl/src/url_canon_stdstring.h', |
| 37 '../../googleurl/src/url_canon_stdurl.cc', |
| 38 '../../googleurl/src/url_file.h', |
| 39 '../../googleurl/src/url_parse.cc', |
| 40 '../../googleurl/src/url_parse.h', |
| 41 '../../googleurl/src/url_parse_file.cc', |
| 42 '../../googleurl/src/url_parse_internal.h', |
| 43 '../../googleurl/src/url_util.cc', |
| 44 '../../googleurl/src/url_util.h', |
| 45 ], |
| 46 'dependencies': [ |
| 47 '../../base/base.gyp:base', |
| 48 '../../third_party/icu38/icu38.gyp:icudata', |
| 49 '../../third_party/icu38/icu38.gyp:icui18n', |
| 50 '../../third_party/icu38/icu38.gyp:icuuc', |
| 51 ], |
| 52 'direct_dependent_settings': { |
| 53 'include_dirs': [ |
| 54 '../..', |
| 55 ], |
| 56 }, |
| 57 }, |
| 58 ], |
| 59 } |
OLD | NEW |