| Index: trunk/src/url/url.gyp
|
| ===================================================================
|
| --- trunk/src/url/url.gyp (revision 203026)
|
| +++ trunk/src/url/url.gyp (working copy)
|
| @@ -8,11 +8,8 @@
|
| },
|
| 'targets': [
|
| {
|
| - # Note, this target_name cannot be 'url', because that will generate
|
| - # 'url.dll' for a Windows component build, and that will confuse Windows,
|
| - # which has a system DLL with the same name.
|
| - 'target_name': 'url_lib',
|
| - 'type': '<(component)',
|
| + 'target_name': 'url',
|
| + 'type': 'static_library',
|
| 'dependencies': [
|
| '../base/base.gyp:base',
|
| '../third_party/icu/icu.gyp:icudata',
|
| @@ -55,7 +52,7 @@
|
| ],
|
| },
|
| 'defines': [
|
| - 'URL_IMPLEMENTATION',
|
| + 'FULL_FILESYSTEM_URL_SUPPORT=1',
|
| ],
|
| # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
|
| 'msvs_disabled_warnings': [4267, ],
|
| @@ -68,7 +65,7 @@
|
| '../base/base.gyp:run_all_unittests',
|
| '../testing/gtest.gyp:gtest',
|
| '../third_party/icu/icu.gyp:icuuc',
|
| - 'url_lib',
|
| + 'url',
|
| ],
|
| 'sources': [
|
| 'gurl_unittest.cc',
|
| @@ -77,6 +74,9 @@
|
| 'url_test_utils.h',
|
| 'url_util_unittest.cc',
|
| ],
|
| + 'defines': [
|
| + 'FULL_FILESYSTEM_URL_SUPPORT=1',
|
| + ],
|
| 'conditions': [
|
| ['os_posix==1 and OS!="mac" and OS!="ios"',
|
| {
|
|
|