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

Unified Diff: sky/engine/core/BUILD.gn

Issue 727593004: Wire up the Inspector V8 Debugger (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Actually works Created 6 years, 1 month 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
Index: sky/engine/core/BUILD.gn
diff --git a/sky/engine/core/BUILD.gn b/sky/engine/core/BUILD.gn
index 6f9140ca41a267d6e32b1a9d93cd737244748350..e525aceff2431afb816403d8b4ee8346c3a72e39 100644
--- a/sky/engine/core/BUILD.gn
+++ b/sky/engine/core/BUILD.gn
@@ -12,19 +12,21 @@ rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir)
source_set("libraries") {
public_deps = [
- "//base:base",
+ "//base",
"//gin",
"//gpu/command_buffer/client:gles2_c_lib",
"//mojo/application",
"//mojo/common",
"//mojo/public/c/system:for_shared_library",
"//mojo/public/cpp/bindings",
- "//mojo/public/cpp/utility",
"//mojo/public/cpp/system",
+ "//mojo/public/cpp/utility",
+ "//mojo/public/interfaces/application",
"//mojo/services/public/cpp/view_manager",
"//mojo/services/public/interfaces/navigation",
"//skia",
"//sky/engine/wtf",
+ "//sky/services/inspector:bindings",
"//third_party/angle:translator",
"//third_party/iccjpeg",
"//third_party/libpng",
@@ -104,6 +106,11 @@ source_set("core_generated") {
# Additional .cpp files from the make_core_generated rules.
"$sky_core_output_dir/CSSGrammar.cpp",
+
+ # Additional .cpp files from the inspector_protocol_sources list.
+ "$sky_core_output_dir/InspectorFrontend.cpp",
+ "$sky_core_output_dir/InspectorBackendDispatcher.cpp",
+ "$sky_core_output_dir/InspectorTypeBuilder.cpp",
]
configs += [

Powered by Google App Engine
This is Rietveld 408576698