From 551dc636e7c2ed8ef7dcd7c0ede66b92e72353e2 Mon Sep 17 00:00:00 2001 From: Taras Tsugrii Date: Sat, 14 Apr 2018 16:58:44 -0700 Subject: [PATCH] Enable Skylark parser. Summary: Switch from Python DSL to Skylark parser for improved performance and determinism. Reviewed By: adamjernst Differential Revision: D7627719 fbshipit-source-id: 761f60de0396d07bd5f4aa60fe7fff099be47cd2 --- lib/dexmaker/BUCK | 1 + lib/junit/BUCK | 1 + plugin/src/py/BUCK | 1 + 3 files changed, 3 insertions(+) diff --git a/lib/dexmaker/BUCK b/lib/dexmaker/BUCK index eb340b95..80a59439 100644 --- a/lib/dexmaker/BUCK +++ b/lib/dexmaker/BUCK @@ -1,3 +1,4 @@ +# BUILD FILE SYNTAX: SKYLARK # Copyright 2014-present Facebook, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/junit/BUCK b/lib/junit/BUCK index a9b24a0f..2ae087e0 100644 --- a/lib/junit/BUCK +++ b/lib/junit/BUCK @@ -1,3 +1,4 @@ +# BUILD FILE SYNTAX: SKYLARK # Copyright 2014-present Facebook, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/plugin/src/py/BUCK b/plugin/src/py/BUCK index 90159d5a..db21ea40 100644 --- a/plugin/src/py/BUCK +++ b/plugin/src/py/BUCK @@ -1,3 +1,4 @@ +# BUILD FILE SYNTAX: SKYLARK python_library( name = "screenshot_tests", srcs = glob(["**/*.py"]),