Remove sky:init

Now that we don't have a magicaly mojom package, we don't need sky:init.
This commit is contained in:
Adam Barth 2015-08-01 19:02:54 -07:00
parent bbc2d196a8
commit 9af45b5e96
2 changed files with 0 additions and 17 deletions

View File

@ -1,16 +0,0 @@
# Copyright 2015 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.
action("init") {
stamp = "$target_gen_dir/sky_init.stamp"
script = "//sky/build/sky_init.py"
sources = [ "//sky/packages/sky/pubspec.yaml" ]
outputs = [ stamp ]
args = [
"--touch",
rebase_path(stamp, root_build_dir),
]
}

View File

@ -36,7 +36,6 @@ class SkyServer(object):
env = os.environ.copy()
env["PUB_CACHE"] = PUB_CACHE
subprocess.check_call([PUB, 'run', 'sky:init'], cwd=WORKBENCH_ROOT, env=env)
args = [PUB, 'run', 'sky_tools:sky_server', str(self.port)]
self.server = subprocess.Popen(args, cwd=WORKBENCH_ROOT, env=env)
return self.server.pid