Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: runtime/observatory/BUILD.gn

Issue 1419943003: Add Observatory BUILD.gn rules (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/BUILD.gn
diff --git a/runtime/observatory/BUILD.gn b/runtime/observatory/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..faa5e001706bfc136f7611773c46489431a93d7e
--- /dev/null
+++ b/runtime/observatory/BUILD.gn
@@ -0,0 +1,183 @@
+# 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.
+
+# Currently paths here are hard coded for convenience in building Mojo/Flutter.
+declare_args() {
+ # Specify the path to a host compatible version of the Dart SDK.
+ # This SDK is used to compile the Observatory frontend sources.
+ dart_host_sdk = rebase_path("//third_party/dart-sdk/dart-sdk")
+
+ # Specify the path to a host compatible version of pub.
+ # This is used to compile the Observatory frontend sources.
+ dart_host_pub_exe = rebase_path("$dart_host_sdk/pub")
rmacnak 2015/10/26 22:17:24 $dart_host_sdk/bin/pub
+}
+
+# Helper build rules for packaging the Dart observatory resources.
+observatory_sources_gypi =
+ exec_script("../../tools/gypi_to_gn.py",
+ [ rebase_path(
+ "//dart/runtime/observatory/observatory_sources.gypi") ],
+ "scope",
+ [ "//dart/runtime/observatory/observatory_sources.gypi" ])
+
+copy("copy_observatory") {
+ sources = rebase_path(observatory_sources_gypi.sources,
+ "",
+ ".")
+ outputs = [
+ "$root_gen_dir/observatory_copy/{{source_root_relative_dir}}/{{source_file_part}}",
+ ]
+}
+
+action("write_observatory_pubspec_yaml") {
+ deps = [
+ ":copy_observatory",
+ ]
+
+ script = "../../tools/observatory_tool.py"
+
+ inputs = [
+ rebase_path("pubspec.yaml"),
+ ]
+
+ args = [
+ "--silent=True",
+ "--pub-executable",
+ rebase_path("//third_party/dart-sdk/dart-sdk/bin/pub"),
+ "--directory",
+ rebase_path("$root_gen_dir/observatory_copy/dart/runtime/observatory/"),
+ "--command",
+ "rewrite",
+ rebase_path("//dart/runtime/observatory/pubspec.yaml"),
+ rebase_path(
+ "$root_gen_dir/observatory_copy/dart/runtime/observatory/pubspec.yaml"),
+ "../../third_party/",
+ rebase_path("../../../dart/third_party/"),
+ ]
+
+ outputs = [
+ "$root_gen_dir/observatory_copy/dart/runtime/observatory/pubspec.yaml",
+ ]
+}
+
+action("copy_observatory_deps") {
+ deps = [
+ ":write_observatory_pubspec_yaml",
+ ]
+
+ script = "//dart/tools/observatory_tool.py"
+
+ inputs = [
+ script,
+ "$root_gen_dir/observatory_copy/dart/runtime/observatory/pubspec.yaml",
+ ]
+
+ args = [
+ "--silent=True",
+ "--pub-executable",
+ rebase_path("//third_party/dart-sdk/dart-sdk/bin/pub"),
rmacnak 2015/10/26 22:17:24 $dart_host_pub_exe
+ "--directory",
+ rebase_path("$root_gen_dir/observatory_copy/dart/runtime/observatory/"),
+ "--command",
+ "get",
+ ]
+
+ outputs = [
+ "$root_gen_dir/observatory_copy/dart/runtime/observatory/pubspec.lock",
+ ]
+}
+
+action("pub_build_observatory") {
+ sources =
+ rebase_path(observatory_sources_gypi.sources,
+ "",
+ "$root_gen_dir/observatory_copy/dart/runtime/observatory")
+
+ deps = [
+ ":copy_observatory",
+ ":copy_observatory_deps",
+ ]
+
+ script = "//dart/tools/observatory_tool.py"
+
+ inputs = [
+ script,
+ ]
+ inputs += sources
+
+ args = [
+ "--silent=True",
+ "--pub-executable",
+ rebase_path("//third_party/dart-sdk/dart-sdk/bin/pub"),
rmacnak 2015/10/26 22:17:24 $dart_host_pub_exe
+ "--directory",
+ rebase_path("$root_gen_dir/observatory_copy/dart/runtime/observatory/"),
+ "--command",
+ "build",
+ rebase_path("$root_out_dir/observatory/build"),
+ ]
+
+ outputs = [
+ "$root_out_dir/observatory/build/web/index.html",
+ "$root_out_dir/observatory/build/web/index.html.polymer.bootstrap.dart.js",
+ ]
+}
+
+action("deploy_observatory") {
+ deps = [
+ ":pub_build_observatory",
+ ]
+
+ script = "//dart/tools/observatory_tool.py"
+
+ inputs = [
+ script,
+ "$root_out_dir/observatory/build/web/index.html",
+ "$root_out_dir/observatory/build/web/index.html.polymer.bootstrap.dart.js",
+ ]
+
+ args = [
+ "--silent=True",
+ "--pub-executable",
+ rebase_path("//third_party/dart-sdk/dart-sdk/bin/pub"),
rmacnak 2015/10/26 22:17:24 $dart_host_pub_exe
+ "--directory",
+ rebase_path("$root_out_dir/observatory"),
+ "--command",
+ "deploy",
+ ]
+
+ outputs = [
+ "$root_out_dir/observatory/deployed/web/index.html",
+ "$root_out_dir/observatory/deployed/web/index.html.polymer.bootstrap.dart.js",
+ ]
+}
+
+action("archive_observatory") {
+ deps = [
+ ":deploy_observatory",
+ ]
+
+ script = "//dart/runtime/tools/create_archive.py"
+
+ inputs = [
+ script,
+ "$root_out_dir/observatory/deployed/web/index.html",
+ "$root_out_dir/observatory/deployed/web/index.html.polymer.bootstrap.dart.js",
+ ]
+
+ args = [
+ "--output",
+ rebase_path("$root_gen_dir/observatory/observatory_archive.cc"),
+ "--tar_output",
+ rebase_path("$root_gen_dir/observatory/observatory_archive.tar"),
+ "--outer_namespace", "dart",
+ "--inner_namespace", "observatory",
+ "--name", "observatory_assets_archive",
+ "--client_root", rebase_path("$root_out_dir/observatory/deployed/web/"),
+ ]
+
+ outputs = [
+ "$root_gen_dir/observatory/observatory_archive.cc",
+ "$root_gen_dir/observatory/observatory_archive.tar",
+ ]
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698