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

Unified Diff: Source/build/scripts/name_macros.py

Issue 344483003: Remove gen/blink/core from build files since all includes have been qualified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix builds Created 6 years, 6 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/bindings/tests/results/V8TestObject.cpp ('k') | Source/build/scripts/templates/MakeNames.h.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/name_macros.py
diff --git a/Source/build/scripts/name_macros.py b/Source/build/scripts/name_macros.py
index 7c2291f05b9b74cdb80e302ad9689fa692f9d19d..a4f69a942dfe6125dce23d96a1a003e84d2bd42e 100644
--- a/Source/build/scripts/name_macros.py
+++ b/Source/build/scripts/name_macros.py
@@ -141,7 +141,7 @@ class Writer(in_generator.Writer):
def generate_headers_header(self):
base_header_for_suffix = ''
if self.suffix:
- base_header_for_suffix = '\n#include "%(namespace)sHeaders.h"\n' % {'namespace': self.namespace}
+ base_header_for_suffix = '\n#include "core/%(namespace)sHeaders.h"\n' % {'namespace': self.namespace}
return HEADER_TEMPLATE % {
'license': license.license_for_generated_cpp(),
'namespace': self.namespace,
@@ -183,7 +183,7 @@ class Writer(in_generator.Writer):
def generate_interfaces_header(self):
base_header_for_suffix = ''
if self.suffix:
- base_header_for_suffix = '\n#include "%(namespace)sInterfaces.h"\n' % {'namespace': self.namespace}
+ base_header_for_suffix = '\n#include "core/%(namespace)sInterfaces.h"\n' % {'namespace': self.namespace}
return INTERFACES_HEADER_TEMPLATE % {
'license': license.license_for_generated_cpp(),
'namespace': self.namespace,
« no previous file with comments | « Source/bindings/tests/results/V8TestObject.cpp ('k') | Source/build/scripts/templates/MakeNames.h.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698