diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-04 21:06:46 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-04 21:06:46 +0000 |
commit | 4df54e8c095bd239b8f7c3786440a4878d2eb509 (patch) | |
tree | 1b06fa36a4d92cca66ac607adbe45aab342dda47 /crypto | |
parent | 73a7a8a02721baddefb25c4a6952760c006f3277 (diff) | |
download | chromium_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 'crypto')
-rw-r--r-- | crypto/crypto.isolate | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/crypto/crypto.isolate b/crypto/crypto.isolate deleted file mode 100644 index 9679d5b..0000000 --- a/crypto/crypto.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/libcrcrypto.so', - ], - }, - }], - ['OS=="mac" and component=="shared_library"', { - 'variables': { - 'isolate_dependency_tracked': [ - '<(PRODUCT_DIR)/libcrcrypto.dylib', - ], - }, - }], - ['OS=="win" and component=="shared_library"', { - 'variables': { - 'isolate_dependency_tracked': [ - '<(PRODUCT_DIR)/crcrypto.dll', - ], - }, - }], - ], -} |