Skip to content

Commit

Permalink
Remove Fuchsia-specific build files.
Browse files Browse the repository at this point in the history
Also fix Fuchsia tools to account for new project location (//third_party/dart).

Change-Id: If89a934729c4fa44229eaca83219dbdf8bb700a8
Bug:
Reviewed-on: https://dart-review.googlesource.com/14800
Commit-Queue: Zach Anderson <zra@google.com>
Reviewed-by: Zach Anderson <zra@google.com>
  • Loading branch information
pylaligand authored and commit-bot@chromium.org committed Oct 19, 2017
1 parent ba3cc12 commit ce79a77
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 179 deletions.
8 changes: 4 additions & 4 deletions DEPS
Expand Up @@ -79,7 +79,7 @@ vars = {

"dartdoc_tag" : "@v0.14.1",
"fixnum_tag": "@0.10.5",
"func_tag": "@1.0.0",
"func_rev": "@25eec48146a58967d75330075ab376b3838b18a8",
"glob_tag": "@1.1.5",
"html_tag" : "@0.13.2",
"http_multi_server_tag" : "@2.0.4",
Expand All @@ -91,7 +91,7 @@ vars = {
"isolate_tag": "@1.1.0",
"jinja2_rev": "@2222b31554f03e62600cd7e383376a7c187967a1",
"json_rpc_2_tag": "@2.0.4",
"linter_tag": "@0.1.35",
"linter_rev": "@ae88f710dce03bc92e20f78645cbdf069b39d529",
"logging_tag": "@0.11.3+1",
"markdown_tag": "@0.11.4",
"matcher_tag": "@0.12.1+4",
Expand Down Expand Up @@ -215,7 +215,7 @@ deps = {
Var("dart_root") + "/third_party/pkg/fixnum":
Var("github_mirror") + "fixnum.git" + Var("fixnum_tag"),
Var("dart_root") + "/third_party/pkg/func":
Var("github_mirror") + "func.git" + Var("func_tag"),
Var("github_mirror") + "func.git" + Var("func_rev"),
Var("dart_root") + "/third_party/pkg/glob":
Var("github_mirror") + "glob.git" + Var("glob_tag"),
Var("dart_root") + "/third_party/pkg/html":
Expand All @@ -237,7 +237,7 @@ deps = {
Var("dart_root") + "/third_party/pkg/json_rpc_2":
Var("github_mirror") + "json_rpc_2.git" + Var("json_rpc_2_tag"),
Var("dart_root") + "/third_party/pkg/linter":
Var("github_mirror") + "linter.git" + Var("linter_tag"),
Var("github_mirror") + "linter.git" + Var("linter_rev"),
Var("dart_root") + "/third_party/pkg/logging":
Var("github_mirror") + "logging.git" + Var("logging_tag"),
Var("dart_root") + "/third_party/pkg/markdown":
Expand Down
40 changes: 0 additions & 40 deletions pkg/analysis_server/BUILD.gn

This file was deleted.

27 changes: 0 additions & 27 deletions pkg/analyzer/BUILD.gn

This file was deleted.

24 changes: 0 additions & 24 deletions pkg/analyzer_cli/BUILD.gn

This file was deleted.

17 changes: 0 additions & 17 deletions pkg/analyzer_plugin/BUILD.gn

This file was deleted.

17 changes: 0 additions & 17 deletions pkg/front_end/BUILD.gn

This file was deleted.

18 changes: 0 additions & 18 deletions pkg/kernel/BUILD.gn

This file was deleted.

18 changes: 0 additions & 18 deletions pkg/telemetry/BUILD.gn

This file was deleted.

11 changes: 0 additions & 11 deletions pkg/typed_mock/BUILD.gn

This file was deleted.

4 changes: 2 additions & 2 deletions tools/create_pkg_manifest.py
Expand Up @@ -50,7 +50,7 @@ def ParseDepsFile(deps_file):
filtered_deps = {}
for k, v in deps.iteritems():
if 'sdk/third_party/pkg' in k:
new_key = k.replace('sdk', 'dart', 1)
new_key = k.replace('sdk', 'third_party/dart', 1)
filtered_deps[new_key] = v

return filtered_deps
Expand All @@ -64,7 +64,7 @@ def WriteManifest(deps, manifest_file):
revision="%s"/>
"""
warning = ('<!-- This file is generated by '
'//dart/tools/create_pkg_manifest.py. DO NOT EDIT -->\n')
'//third_party/dart/tools/create_pkg_manifest.py. DO NOT EDIT -->\n')
with open(manifest_file, 'w') as manifest:
manifest.write('<?xml version="1.0" encoding="UTF-8"?>\n')
manifest.write(warning)
Expand Down
2 changes: 1 addition & 1 deletion tools/download_latest_dev_sdk.py
Expand Up @@ -18,7 +18,7 @@
HOST_ARCH = utils.GuessArchitecture()
SCRIPT_DIR = os.path.dirname(sys.argv[0])
DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..'))
FUCHSIA_ROOT = os.path.realpath(os.path.join(DART_ROOT, '..'))
FUCHSIA_ROOT = os.path.realpath(os.path.join(DART_ROOT, '..', '..'))
FLUTTER_ROOT = os.path.join(FUCHSIA_ROOT, 'lib', 'flutter')

DEFAULT_DART_VERSION = 'latest'
Expand Down

0 comments on commit ce79a77

Please sign in to comment.