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

Unified Diff: src/d8.gyp

Issue 1217483002: Fix missing source dependencies. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: gn Created 5 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 | « BUILD.gn ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.gyp
diff --git a/src/d8.gyp b/src/d8.gyp
index a78551599fb0992a4519754e7a62a8dc2727b1e2..548459a7901463e8c8d1b9785d25b267fed95419 100644
--- a/src/d8.gyp
+++ b/src/d8.gyp
@@ -48,6 +48,7 @@
'..',
],
'sources': [
+ 'd8.h',
'd8.cc',
'startup-data-util.h',
'startup-data-util.cc'
@@ -69,7 +70,11 @@
'sources': [ 'd8-windows.cc', ]
}],
[ 'component!="shared_library"', {
- 'sources': [ 'd8-debug.cc', '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', ],
+ 'sources': [
+ 'd8-debug.h',
+ 'd8-debug.cc',
+ '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc',
+ ],
'conditions': [
[ 'want_separate_host_toolset==1', {
'dependencies': [
« no previous file with comments | « BUILD.gn ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698