diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-23 06:58:45 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-23 06:58:45 +0000 |
commit | 232005abbc32dfaf8498ef8ee9c15e4f30d1e7e7 (patch) | |
tree | 90aca67984c699badc26fb4553651a6c8b272810 /url/url.gyp | |
parent | bf911527b7e20eecef2f24ab3bfe05b723f585c1 (diff) | |
download | chromium_src-232005abbc32dfaf8498ef8ee9c15e4f30d1e7e7.zip chromium_src-232005abbc32dfaf8498ef8ee9c15e4f30d1e7e7.tar.gz chromium_src-232005abbc32dfaf8498ef8ee9c15e4f30d1e7e7.tar.bz2 |
Make the copy of GURL in src/url buildable as a component build.
BUG=229660
Review URL: https://chromiumcodereview.appspot.com/15255009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201723 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url/url.gyp')
-rw-r--r-- | url/url.gyp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/url/url.gyp b/url/url.gyp index 0434669..d9b5807eb 100644 --- a/url/url.gyp +++ b/url/url.gyp @@ -9,7 +9,7 @@ 'targets': [ { 'target_name': 'url', - 'type': 'static_library', + 'type': '<(component)', 'dependencies': [ '../base/base.gyp:base', '../third_party/icu/icu.gyp:icudata', @@ -52,7 +52,7 @@ ], }, 'defines': [ - 'FULL_FILESYSTEM_URL_SUPPORT=1', + 'URL_IMPLEMENTATION', ], # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 'msvs_disabled_warnings': [4267, ], @@ -74,9 +74,6 @@ 'url_test_utils.h', 'url_util_unittest.cc', ], - 'defines': [ - 'FULL_FILESYSTEM_URL_SUPPORT=1', - ], 'conditions': [ ['os_posix==1 and OS!="mac" and OS!="ios"', { |