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

Unified Diff: runtime/bin/BUILD.gn

Issue 3004173002: Revert "Removed Dartium SDK libs" (Closed)
Patch Set: Created 3 years, 4 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 | « pkg/dev_compiler/tool/input_sdk/libraries.dart ('k') | runtime/bin/builtin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/BUILD.gn
diff --git a/runtime/bin/BUILD.gn b/runtime/bin/BUILD.gn
index 6ff82df1e0559d6b64b7b54bb14e7adfc60069c2..d194b125f165caf28edf07ef809a11a449c8a59b 100644
--- a/runtime/bin/BUILD.gn
+++ b/runtime/bin/BUILD.gn
@@ -108,7 +108,7 @@ gen_library_src_path("generate_html_cc_file") {
name = "html"
kind = "source"
sources = [
- "../../sdk/lib/html/dart2js/html_dart2js.dart",
+ "../../sdk/lib/html/dartium/html_dartium.dart",
]
output = "$target_gen_dir/html_gen.cc"
}
@@ -118,7 +118,7 @@ gen_library_src_path("generate_html_common_cc_file") {
kind = "source"
sources = [
"../../sdk/lib/html/html_common/conversions.dart",
- "../../sdk/lib/html/html_common/conversions_dart2js.dart",
+ "../../sdk/lib/html/html_common/conversions_dartium.dart",
"../../sdk/lib/html/html_common/css_class_set.dart",
"../../sdk/lib/html/html_common/device.dart",
"../../sdk/lib/html/html_common/filtered_element_list.dart",
@@ -132,7 +132,7 @@ gen_library_src_path("generate_js_cc_file") {
name = "js"
kind = "source"
sources = [
- "../../sdk/lib/js/dart2js/js_dart2js.dart",
+ "../../sdk/lib/js/dartium/js_dartium.dart",
]
output = "$target_gen_dir/js_gen.cc"
}
@@ -141,25 +141,44 @@ gen_library_src_path("generate_js_util_cc_file") {
name = "js_util"
kind = "source"
sources = [
- "../../sdk/lib/js_util/dart2js/js_util_dart2js.dart",
+ "../../sdk/lib/js_util/dartium/js_util_dartium.dart",
]
output = "$target_gen_dir/js_util_gen.cc"
}
+gen_library_src_path("generate_blink_cc_file") {
+ name = "_blink"
+ kind = "source"
+ sources = [
+ "../../sdk/lib/_blink/dartium/_blink_dartium.dart",
+ ]
+ output = "$target_gen_dir/blink_gen.cc"
+}
+
gen_library_src_path("generate_indexed_db_cc_file") {
name = "indexed_db"
kind = "source"
sources = [
- "../../sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart",
+ "../../sdk/lib/indexed_db/dartium/indexed_db_dartium.dart",
]
output = "$target_gen_dir/indexed_db_gen.cc"
}
+gen_library_src_path("generate_cached_patches_cc_file") {
+ name = "cached_patches"
+ library_name = "cached_patches.dart"
+ kind = "source"
+ sources = [
+ "../../sdk/lib/js/dartium/cached_patches.dart",
+ ]
+ output = "$target_gen_dir/cached_patches_gen.cc"
+}
+
gen_library_src_path("generate_web_gl_cc_file") {
name = "web_gl"
kind = "source"
sources = [
- "../../sdk/lib/web_gl/dart2js/web_gl_dart2js.dart",
+ "../../sdk/lib/web_gl/dartium/web_gl_dartium.dart",
]
output = "$target_gen_dir/web_gl_gen.cc"
}
@@ -178,7 +197,7 @@ gen_library_src_path("generate_web_sql_cc_file") {
name = "web_sql"
kind = "source"
sources = [
- "../../sdk/lib/web_sql/dart2js/web_sql_dart2js.dart",
+ "../../sdk/lib/web_sql/dartium/web_sql_dartium.dart",
]
output = "$target_gen_dir/web_sql_gen.cc"
}
@@ -187,7 +206,7 @@ gen_library_src_path("generate_svg_cc_file") {
name = "svg"
kind = "source"
sources = [
- "../../sdk/lib/svg/dart2js/svg_dart2js.dart",
+ "../../sdk/lib/svg/dartium/svg_dartium.dart",
]
output = "$target_gen_dir/svg_gen.cc"
}
@@ -196,7 +215,7 @@ gen_library_src_path("generate_web_audio_cc_file") {
name = "web_audio"
kind = "source"
sources = [
- "../../sdk/lib/web_audio/dart2js/web_audio_dart2js.dart",
+ "../../sdk/lib/web_audio/dartium/web_audio_dartium.dart",
]
output = "$target_gen_dir/web_audio_gen.cc"
}
@@ -225,7 +244,9 @@ template("build_libdart_builtin") {
}
public_configs = [ ":libdart_builtin_config" ]
deps = [
+ ":generate_blink_cc_file",
":generate_builtin_cc_file",
+ ":generate_cached_patches_cc_file",
":generate_html_cc_file",
":generate_html_common_cc_file",
":generate_indexed_db_cc_file",
@@ -779,7 +800,9 @@ dart_executable("dart_bootstrap") {
]
extra_deps = [
":gen_resources_cc",
+ ":generate_blink_cc_file",
":generate_builtin_cc_file",
+ ":generate_cached_patches_cc_file",
":generate_html_cc_file",
":generate_html_common_cc_file",
":generate_indexed_db_cc_file",
@@ -808,7 +831,9 @@ dart_executable("dart_bootstrap") {
"snapshot_empty.cc",
# Include generated source files.
+ "$target_gen_dir/blink_gen.cc",
"$target_gen_dir/builtin_gen.cc",
+ "$target_gen_dir/cached_patches_gen.cc",
"$target_gen_dir/html_common_gen.cc",
"$target_gen_dir/html_gen.cc",
"$target_gen_dir/indexed_db_gen.cc",
« no previous file with comments | « pkg/dev_compiler/tool/input_sdk/libraries.dart ('k') | runtime/bin/builtin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698