summaryrefslogtreecommitdiffstats
path: root/url/url.gyp
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-11 22:11:45 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-11 22:11:45 +0000
commitbb8551fba8d291273d98b78895235e11b0fb6df6 (patch)
treeab8d0940ebf8405378d1f255de9fd125cdaf431d /url/url.gyp
parent188a91a31b55437aa725e67373f3495df60e9e53 (diff)
downloadchromium_src-bb8551fba8d291273d98b78895235e11b0fb6df6.zip
chromium_src-bb8551fba8d291273d98b78895235e11b0fb6df6.tar.gz
chromium_src-bb8551fba8d291273d98b78895235e11b0fb6df6.tar.bz2
url: Changes to make it build standalone.
- Update the gyp file. - Rename the gyp file from googleurl.gyp to url.gyp, so it matches the directory name. - Update the header include paths. - Update the header include guards. - Rename the target name from googleurl to url and googleurl_unittests to url_unittests. - Add missing OVERRIDEs where clang complains. BUG=229660 TEST=url_unittests R=brettw@chromium.org Review URL: https://codereview.chromium.org/14016005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193777 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url/url.gyp')
-rw-r--r--url/url.gyp109
1 files changed, 109 insertions, 0 deletions
diff --git a/url/url.gyp b/url/url.gyp
new file mode 100644
index 0000000..6247089
--- /dev/null
+++ b/url/url.gyp
@@ -0,0 +1,109 @@
+# Copyright (c) 2012 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'url',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../third_party/icu/icu.gyp:icudata',
+ '../third_party/icu/icu.gyp:icui18n',
+ '../third_party/icu/icu.gyp:icuuc',
+ ],
+ 'sources': [
+ 'gurl.cc',
+ 'gurl.h',
+ 'url_canon.h',
+ 'url_canon_etc.cc',
+ 'url_canon_fileurl.cc',
+ 'url_canon_filesystemurl.cc',
+ 'url_canon_host.cc',
+ 'url_canon_icu.cc',
+ 'url_canon_icu.h',
+ 'url_canon_internal.cc',
+ 'url_canon_internal.h',
+ 'url_canon_internal_file.h',
+ 'url_canon_ip.cc',
+ 'url_canon_ip.h',
+ 'url_canon_mailtourl.cc',
+ 'url_canon_path.cc',
+ 'url_canon_pathurl.cc',
+ 'url_canon_query.cc',
+ 'url_canon_relative.cc',
+ 'url_canon_stdstring.cc',
+ 'url_canon_stdstring.h',
+ 'url_canon_stdurl.cc',
+ 'url_file.h',
+ 'url_parse.cc',
+ 'url_parse.h',
+ 'url_parse_file.cc',
+ 'url_parse_internal.h',
+ 'url_util.cc',
+ 'url_util.h',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '..',
+ ],
+ },
+ 'defines': [
+ 'FULL_FILESYSTEM_URL_SUPPORT=1',
+ ],
+ 'conditions': [
+ ['component=="shared_library"', {
+ 'defines': [
+ 'GURL_DLL',
+ 'GURL_IMPLEMENTATION=1',
+ ],
+ 'direct_dependent_settings': {
+ 'defines': [
+ 'GURL_DLL',
+ ],
+ },
+ }],
+ ],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
+ },
+ {
+ 'target_name': 'url_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'url',
+ '../base/base.gyp:base_i18n',
+ '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ '../third_party/icu/icu.gyp:icuuc',
+ ],
+ 'sources': [
+ 'gurl_unittest.cc',
+ 'url_canon_unittest.cc',
+ 'url_parse_unittest.cc',
+ 'url_test_utils.h',
+ 'url_util_unittest.cc',
+ ],
+ 'defines': [
+ 'FULL_FILESYSTEM_URL_SUPPORT=1',
+ ],
+ 'conditions': [
+ ['os_posix==1 and OS!="mac" and OS!="ios"', {
+ 'conditions': [
+ ['linux_use_tcmalloc==1', {
+ 'dependencies': [
+ '../base/allocator/allocator.gyp:allocator',
+ ],
+ }],
+ ],
+ }],
+ ],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
+ },
+ ],
+}