diff options
author | cmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-21 22:45:07 +0000 |
---|---|---|
committer | cmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-21 22:45:07 +0000 |
commit | f71d35b01e375b8e0f1a7c1e0d210d7788eb2ad6 (patch) | |
tree | 98d9f9934fe5a391e0af9caea0af6843b8aac821 /build | |
parent | 74895f21c68ecf5edcd7064e0280761425498413 (diff) | |
download | chromium_src-f71d35b01e375b8e0f1a7c1e0d210d7788eb2ad6.zip chromium_src-f71d35b01e375b8e0f1a7c1e0d210d7788eb2ad6.tar.gz chromium_src-f71d35b01e375b8e0f1a7c1e0d210d7788eb2ad6.tar.bz2 |
Don't build googleurl_unittests in shlib builds.
BUG=82178
Review URL: http://codereview.chromium.org/7059003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86228 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/temp_gyp/googleurl.gyp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/temp_gyp/googleurl.gyp b/build/temp_gyp/googleurl.gyp index b59d994..682dd8e 100644 --- a/build/temp_gyp/googleurl.gyp +++ b/build/temp_gyp/googleurl.gyp @@ -1,4 +1,4 @@ -# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Copyright (c) 2011 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. @@ -97,9 +97,9 @@ }], # TODO(victorw): The unittest code uses inline functions that access # global variables, it also uses internal functions that we may not want - # to export, so skip building unittests for windows multi dll build. + # to export, so skip building unittests for component builds. # The googleurl functions are tested by the static library build. - ['OS=="win" and component=="shared_library"', { + ['component=="shared_library"', { 'type': 'none', }, { 'type': 'executable', |