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

Unified Diff: Source/core/core.gni

Issue 298703005: First pass on blink compiling for GN build (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comments Created 6 years, 7 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 | « Source/core/BUILD.gn ('k') | Source/modules/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/core.gni
diff --git a/Source/core/core.gni b/Source/core/core.gni
new file mode 100644
index 0000000000000000000000000000000000000000..c1e51ae1f817c08040b8f09b00dded124f06f634
--- /dev/null
+++ b/Source/core/core.gni
@@ -0,0 +1,33 @@
+# Copyright 2014 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.
+
+# This file is gn GN version of core.gypi. Note that all file lists are
+# relative to the source root unless otherwise noted.
+_gypi = exec_script(
+ "//build/gypi_to_gn.py",
+ [ rebase_path("core.gypi"),
+ "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir" ],
+ "scope",
+ [ "core.gypi" ])
+
+# Files for which bindings (.cpp and .h files) will be generated
+core_idl_files = rebase_path(_gypi.core_idl_files, "//")
+
+# 'partial interface', target (right side of) 'implements', and
+# interfaces with static bindings (in bindings/v8/)
+core_dependency_idl_files = rebase_path(_gypi.core_dependency_idl_files, "//")
+
+# Interfaces that inherit from Event, including Event itself.
+# Files relative to Source/core
+core_event_idl_files = _gypi.core_event_idl_files
+
+webcore_files = rebase_path(_gypi.webcore_files, "//")
+webcore_dom_files = rebase_path(_gypi.webcore_dom_files, "//")
+webcore_html_files = rebase_path(_gypi.webcore_html_files, "//")
+webcore_svg_files = rebase_path(_gypi.webcore_svg_files, "//")
+webcore_testing_idl_files = rebase_path(_gypi.webcore_testing_idl_files, "//")
+generated_webcore_testing_idl_files =
+ rebase_path(_gypi.generated_webcore_testing_idl_files, "//")
+webcore_testing_files = rebase_path(_gypi.webcore_testing_files, "//")
+core_unittest_files = rebase_path(_gypi.core_unittest_files, "//")
« no previous file with comments | « Source/core/BUILD.gn ('k') | Source/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698