Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: swarm_client/isolate_merge.py

Issue 69143004: Delete swarm_client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « swarm_client/isolate.py ('k') | swarm_client/isolateserver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: swarm_client/isolate_merge.py
===================================================================
--- swarm_client/isolate_merge.py (revision 235167)
+++ swarm_client/isolate_merge.py (working copy)
@@ -1,72 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2012 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.
-
-"""Merges multiple OS-specific gyp dependency lists into one that works on all
-of them.
-
-The logic is relatively simple. Takes the current conditions, add more
-condition, find the strict subset. Done.
-"""
-
-import logging
-import os
-import sys
-
-from isolate import eval_content, extract_comment
-from isolate import load_isolate_as_config, print_all, union
-
-from utils import tools
-
-
-def load_isolates(items):
- """Parses each .isolate file and returns the merged results.
-
- It only loads what load_isolate_as_config() can process.
-
- Return values:
- files: dict(filename, set(OS where this filename is a dependency))
- dirs: dict(dirame, set(OS where this dirname is a dependency))
- oses: set(all the OSes referenced)
- """
- configs = None
- for item in items:
- item = os.path.abspath(item)
- logging.debug('loading %s' % item)
- if item == '-':
- content = sys.stdin.read()
- else:
- with open(item, 'r') as f:
- content = f.read()
- new_config = load_isolate_as_config(
- os.path.dirname(item),
- eval_content(content),
- extract_comment(content))
- logging.debug('has configs: ' + ','.join(map(repr, new_config.by_config)))
- configs = union(configs, new_config)
- logging.debug('Total configs: ' + ','.join(map(repr, configs.by_config)))
- return configs
-
-
-def main(args=None):
- tools.disable_buffering()
- parser = tools.OptionParserWithLogging(
- usage='%prog <options> [file1] [file2] ...')
- parser.add_option(
- '-o', '--output', help='Output to file instead of stdout')
-
- options, args = parser.parse_args(args)
-
- configs = load_isolates(args)
- data = configs.make_isolate_file()
- if options.output:
- with open(options.output, 'wb') as f:
- print_all(configs.file_comment, data, f)
- else:
- print_all(configs.file_comment, data, sys.stdout)
- return 0
-
-
-if __name__ == '__main__':
- sys.exit(main())
« no previous file with comments | « swarm_client/isolate.py ('k') | swarm_client/isolateserver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698