From 99500de827a6f266be1ab4759109555b16475e44 Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Tue, 29 Dec 2015 23:07:32 -0800 Subject: [PATCH] Unhook packages/material_design_icons from the build We don't have any use for this symlink in the out directory anymore. This patch lets us remove our fork of build/symlink.py. --- engine/src/flutter/sky/packages/BUILD.gn | 1 - .../packages/material_design_icons/BUILD.gn | 19 ------------------- 2 files changed, 20 deletions(-) delete mode 100644 engine/src/flutter/sky/packages/material_design_icons/BUILD.gn diff --git a/engine/src/flutter/sky/packages/BUILD.gn b/engine/src/flutter/sky/packages/BUILD.gn index d404d91d31..0014e9d2d8 100644 --- a/engine/src/flutter/sky/packages/BUILD.gn +++ b/engine/src/flutter/sky/packages/BUILD.gn @@ -8,6 +8,5 @@ group("packages") { deps = [ "//sky/packages/sky_engine", "//sky/packages/sky_services", - "//sky/packages/material_design_icons", ] } diff --git a/engine/src/flutter/sky/packages/material_design_icons/BUILD.gn b/engine/src/flutter/sky/packages/material_design_icons/BUILD.gn deleted file mode 100644 index b71690a07b..0000000000 --- a/engine/src/flutter/sky/packages/material_design_icons/BUILD.gn +++ /dev/null @@ -1,19 +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("material_design_icons") { - script = "//sky/build/symlink.py" - - stamp_file = "$target_gen_dir/symlink.stamp" - - sources = [ "lib/.version.sha1" ] - outputs = [ stamp_file ] - - args = [ - rebase_path("lib", root_build_dir), - rebase_path("$root_gen_dir/dart-pkg/packages/material_design_icons", root_build_dir), - "--touch", - rebase_path(stamp_file, root_build_dir) - ] -}