Skip to content

Commit

Permalink
Use swarming_client instead of swarm_client.
Browse files Browse the repository at this point in the history
Modify all the references to use src/tools/swarming_client/.

The build scripts already support both.

R=csharp@chromium.org, torne@chromium.org
BUG=

Review URL: https://codereview.chromium.org/29993003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232104 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
maruel@chromium.org committed Oct 31, 2013
1 parent aafa5a6 commit 10d8ac3
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ v8.log
/tools/page_cycler/acid3
/tools/perf/data
/tools/perf/results.html
/tools/swarm_client
/tools/swarming_client
/tools/tryserver
/tools/win/link_limiter/build
/ui/surface/surface.xml
Expand Down
9 changes: 5 additions & 4 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ vars = {
"jsoncpp_revision": "248",
"nss_revision": "231937",
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling swarm_client
# the commit queue can handle CLs rolling swarming_client
# and whatever else without interference from each other.
"swarm_revision": "230741",
"swarming_revision": "141ef86f4abf255e578320bfe6e42006c251bc39",
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling openssl
# and whatever else without interference from each other.
Expand Down Expand Up @@ -117,8 +117,9 @@ deps = {
"src/tools/gyp":
(Var("googlecode_url") % "gyp") + "/trunk@1773",

"src/tools/swarm_client":
"/trunk/tools/swarm_client@" + Var("swarm_revision"),
"src/tools/swarming_client":
Var("chromium_git") + "/external/swarming.client.git@" +
Var("swarming_revision"),

"src/v8":
(Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"),
Expand Down
2 changes: 1 addition & 1 deletion android_webview/tools/webview_licenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def _FindThirdPartyDirs():
# provide a way to shadow experimental buildfiles into those directories.
os.path.join('tools', 'gn', 'secondary'),
# Not shipped, Chromium code
os.path.join('tools', 'swarm_client'),
os.path.join('tools', 'swarming_client'),
]
third_party_dirs = licenses.FindThirdPartyDirs(prune_paths, REPOSITORY_ROOT)
return licenses.FilterDirsWithFiles(third_party_dirs, REPOSITORY_ROOT)
Expand Down
2 changes: 1 addition & 1 deletion base/base_unittests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
'<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
],
'isolate_dependency_untracked': [
'../tools/swarm_client/',
'../tools/swarming_client/',
],
},
}],
Expand Down
2 changes: 1 addition & 1 deletion build/android/pylib/gtest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
]

_ISOLATE_SCRIPT = os.path.join(
constants.DIR_SOURCE_ROOT, 'tools', 'swarm_client', 'isolate.py')
constants.DIR_SOURCE_ROOT, 'tools', 'swarming_client', 'isolate.py')


def _GenerateDepsDirUsingIsolate(suite_name):
Expand Down
2 changes: 1 addition & 1 deletion build/common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@
# Whether tests targets should be run, archived or just have the
# dependencies verified. All the tests targets have the '_run' suffix,
# e.g. base_unittests_run runs the target base_unittests. The test
# target always calls tools/swarm_client/isolate.py. See the script's
# target always calls tools/swarming_client/isolate.py. See the script's
# --help for more information and the valid --mode values. Meant to be
# overriden with GYP_DEFINES.
# TODO(maruel): Remove the conditions as more configurations are
Expand Down
10 changes: 5 additions & 5 deletions build/isolate.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
'extension': 'isolate',
'inputs': [
# Files that are known to be involved in this step.
'<(DEPTH)/tools/swarm_client/isolate.py',
'<(DEPTH)/tools/swarm_client/run_isolated.py',
'<(DEPTH)/tools/swarm_client/googletest/run_test_cases.py',
'<(DEPTH)/tools/swarming_client/isolate.py',
'<(DEPTH)/tools/swarming_client/run_isolated.py',
'<(DEPTH)/tools/swarming_client/googletest/run_test_cases.py',

# Disable file tracking by the build driver for now. This means the
# project must have the proper build-time dependency for their runtime
Expand All @@ -64,7 +64,7 @@
["test_isolation_outdir==''", {
'action': [
'python',
'<(DEPTH)/tools/swarm_client/isolate.py',
'<(DEPTH)/tools/swarming_client/isolate.py',
'<(test_isolation_mode)',
# GYP will eliminate duplicate arguments so '<(PRODUCT_DIR)' cannot
# be provided twice. To work around this behavior, append '/'.
Expand All @@ -84,7 +84,7 @@
}, {
'action': [
'python',
'<(DEPTH)/tools/swarm_client/isolate.py',
'<(DEPTH)/tools/swarming_client/isolate.py',
'<(test_isolation_mode)',
'--outdir', '<(test_isolation_outdir)',
# See comment above.
Expand Down
2 changes: 1 addition & 1 deletion chrome/browser_tests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
'../third_party/safe_browsing/',
'../third_party/simplejson/',
'../third_party/tlslite/',
'../tools/swarm_client/',
'../tools/swarming_client/',
'<(PRODUCT_DIR)/nacl_test_data/',
'<(PRODUCT_DIR)/pnacl/',
'<(PRODUCT_DIR)/pseudo_locales/',
Expand Down
2 changes: 1 addition & 1 deletion chrome/interactive_ui_tests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'../third_party/pyftpdlib/',
'../third_party/pywebsocket/src/mod_pywebsocket/',
'../third_party/tlslite/tlslite/',
'../tools/swarm_client/',
'../tools/swarming_client/',
'test/data/',
],
},
Expand Down
2 changes: 1 addition & 1 deletion chrome/sync_integration_tests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
['OS=="linux" or OS=="mac" or OS=="win"', {
'variables': {
'isolate_dependency_untracked': [
'../tools/swarm_client/',
'../tools/swarming_client/',
'<(PRODUCT_DIR)/pyproto/',
],
},
Expand Down
2 changes: 1 addition & 1 deletion chrome/unit_tests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
'../third_party/pyftpdlib/',
'../third_party/pywebsocket/',
'../third_party/tlslite/',
'../tools/swarm_client/',
'../tools/swarming_client/',
'<(PRODUCT_DIR)/pyproto/',
],
},
Expand Down
2 changes: 1 addition & 1 deletion content/content_browsertests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
'../third_party/pyftpdlib/',
'../third_party/pywebsocket/',
'../third_party/tlslite/',
'../tools/swarm_client/',
'../tools/swarming_client/',
],
},
}],
Expand Down
2 changes: 1 addition & 1 deletion content/content_unittests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
],
'isolate_dependency_untracked': [
'../tools/swarm_client/',
'../tools/swarming_client/',
],
},
}],
Expand Down
2 changes: 1 addition & 1 deletion net/net_unittests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'../third_party/pyftpdlib/',
'../third_party/pywebsocket/',
'../third_party/tlslite/',
'../tools/swarm_client/',
'../tools/swarming_client/',
'<(PRODUCT_DIR)/pyproto/',
'tools/testserver/',
],
Expand Down
4 changes: 2 additions & 2 deletions tools/checklicenses/checklicenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,12 +364,12 @@ def PrintUsage():
],

# https://code.google.com/p/colorama/issues/detail?id=44
'tools/swarm_client/third_party/colorama': [
'tools/swarming_client/third_party/colorama': [
'UNKNOWN',
],

# https://github.com/kennethreitz/requests/issues/1610
'tools/swarm_client/third_party/requests': [
'tools/swarming_client/third_party/requests': [
'UNKNOWN',
],

Expand Down
2 changes: 1 addition & 1 deletion tools/licenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

# Chromium code in third_party.
os.path.join('third_party','fuzzymatch'),
os.path.join('tools', 'swarm_client'),
os.path.join('tools', 'swarming_client'),

# Stuff pulled in from chrome-internal for official builds/tools.
os.path.join('third_party', 'clear_cache'),
Expand Down

0 comments on commit 10d8ac3

Please sign in to comment.