summaryrefslogtreecommitdiffstats
path: root/url
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-04 21:06:46 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-04 21:06:46 +0000
commit4df54e8c095bd239b8f7c3786440a4878d2eb509 (patch)
tree1b06fa36a4d92cca66ac607adbe45aab342dda47 /url
parent73a7a8a02721baddefb25c4a6952760c006f3277 (diff)
downloadchromium_src-4df54e8c095bd239b8f7c3786440a4878d2eb509.zip
chromium_src-4df54e8c095bd239b8f7c3786440a4878d2eb509.tar.gz
chromium_src-4df54e8c095bd239b8f7c3786440a4878d2eb509.tar.bz2
Get rid of all component builds specific .isolate.
The status quo was unmaintainable. These 'component build specific .isolate files' are superseeded by tools/isolate_driver.py which packages dynamic libraries automatically. The new way is much more sane and dynamic, isolate_driver.py is currently very crude but 'does the job', the expected way to make it work is to read the .ninja files to extract all the dynamic libraries marked as a dependency to the main target being executed. TBR=csharp@chromium.org BUG=333473 Review URL: https://codereview.chromium.org/226123004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261871 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url')
-rw-r--r--url/url.isolate28
1 files changed, 0 insertions, 28 deletions
diff --git a/url/url.isolate b/url/url.isolate
deleted file mode 100644
index ee27a0d..0000000
--- a/url/url.isolate
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2014 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.
-{
- 'conditions': [
- ['OS=="linux" and component=="shared_library"', {
- 'variables': {
- 'isolate_dependency_tracked': [
- '<(PRODUCT_DIR)/lib/liburl_lib.so',
- ],
- },
- }],
- ['OS=="mac" and component=="shared_library"', {
- 'variables': {
- 'isolate_dependency_tracked': [
- '<(PRODUCT_DIR)/liburl_lib.dylib',
- ],
- },
- }],
- ['OS=="win" and component=="shared_library"', {
- 'variables': {
- 'isolate_dependency_tracked': [
- '<(PRODUCT_DIR)/url_lib.dll',
- ],
- },
- }],
- ],
-}