summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/config/fuchsia/sizes.gni
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/build/config/fuchsia/sizes.gni')
-rw-r--r--third_party/libwebrtc/build/config/fuchsia/sizes.gni46
1 files changed, 46 insertions, 0 deletions
diff --git a/third_party/libwebrtc/build/config/fuchsia/sizes.gni b/third_party/libwebrtc/build/config/fuchsia/sizes.gni
new file mode 100644
index 0000000000..20a5bf831e
--- /dev/null
+++ b/third_party/libwebrtc/build/config/fuchsia/sizes.gni
@@ -0,0 +1,46 @@
+# Copyright 2020 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.
+
+import("//build/util/generate_wrapper.gni")
+
+template("compute_fuchsia_package_sizes") {
+ generate_wrapper(target_name) {
+ forward_variables_from(invoker,
+ [
+ "data",
+ "data_deps",
+ ])
+ testonly = true
+ executable = "//build/fuchsia/binary_sizes.py"
+ wrapper_script = "$root_out_dir/bin/run_${target_name}"
+
+ assert(target_cpu == "arm64" || target_cpu == "x64",
+ "target_cpu must be arm64 or x64")
+
+ if (!defined(data)) {
+ data = []
+ }
+
+ if (!defined(data_deps)) {
+ data_deps = []
+ }
+
+ # Declares the files that are needed for test execution on the
+ # swarming test client.
+ data += [
+ "//build/fuchsia/",
+ "//fuchsia/release/size_tests/",
+ "//third_party/fuchsia-sdk/sdk/arch/",
+ "//third_party/fuchsia-sdk/sdk/tools/${target_cpu}/",
+ ]
+
+ executable_args = [
+ "--output-directory",
+ "@WrappedPath(.)",
+ ]
+ if (defined(invoker.executable_args)) {
+ executable_args += invoker.executable_args
+ }
+ }
+}