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

Unified Diff: src/v8.gyp

Issue 2352103002: [gn] Add gn support to gcmole (Closed)
Patch Set: Added todo Created 4 years, 3 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') | test/cctest/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.gyp
diff --git a/src/v8.gyp b/src/v8.gyp
index 881de34ff43e8df121d6523aa520f636cd4a88d3..6ee94477a8ae08ccbeaa6c6f9c8f39f4328086b5 100644
--- a/src/v8.gyp
+++ b/src/v8.gyp
@@ -582,14 +582,14 @@
'compiler/effect-control-linearizer.h',
'compiler/escape-analysis.cc',
'compiler/escape-analysis.h',
- "compiler/escape-analysis-reducer.cc",
- "compiler/escape-analysis-reducer.h",
+ 'compiler/escape-analysis-reducer.cc',
+ 'compiler/escape-analysis-reducer.h',
'compiler/frame.cc',
'compiler/frame.h',
'compiler/frame-elider.cc',
'compiler/frame-elider.h',
- "compiler/frame-states.cc",
- "compiler/frame-states.h",
+ 'compiler/frame-states.cc',
+ 'compiler/frame-states.h',
'compiler/gap-resolver.cc',
'compiler/gap-resolver.h',
'compiler/graph-reducer.cc',
@@ -1557,9 +1557,15 @@
'regexp/mips64/regexp-macro-assembler-mips64.h',
],
}],
- ['v8_target_arch=="x64" or v8_target_arch=="x32"', {
+ ['v8_target_arch=="x64"', {
'sources': [ ### gcmole(arch:x64) ###
'builtins/x64/builtins-x64.cc',
+ 'compiler/x64/code-generator-x64.cc',
+ 'compiler/x64/instruction-codes-x64.h',
+ 'compiler/x64/instruction-scheduler-x64.cc',
+ 'compiler/x64/instruction-selector-x64.cc',
+ 'compiler/x64/unwinding-info-writer-x64.h',
+ 'compiler/x64/unwinding-info-writer-x64.cc',
'crankshaft/x64/lithium-codegen-x64.cc',
'crankshaft/x64/lithium-codegen-x64.h',
'crankshaft/x64/lithium-gap-resolver-x64.cc',
@@ -1576,6 +1582,7 @@
'x64/cpu-x64.cc',
'x64/deoptimizer-x64.cc',
'x64/disasm-x64.cc',
+ 'x64/eh-frame-x64.cc',
'x64/frames-x64.cc',
'x64/frames-x64.h',
'x64/interface-descriptors-x64.cc',
@@ -1596,17 +1603,6 @@
'third_party/valgrind/valgrind.h',
],
}],
- ['v8_target_arch=="x64"', {
- 'sources': [
- 'compiler/x64/code-generator-x64.cc',
- 'compiler/x64/instruction-codes-x64.h',
- 'compiler/x64/instruction-scheduler-x64.cc',
- 'compiler/x64/instruction-selector-x64.cc',
- 'compiler/x64/unwinding-info-writer-x64.h',
- 'compiler/x64/unwinding-info-writer-x64.cc',
- 'x64/eh-frame-x64.cc',
- ],
- }],
['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
'sources': [ ### gcmole(arch:ppc) ###
'builtins/ppc/builtins-ppc.cc',
« no previous file with comments | « BUILD.gn ('k') | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698