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

Unified Diff: tools/relocation_packer/relocation_packer.gyp

Issue 404553003: Create builds configured for ARM and AARCH64. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Purge unused includes. Created 6 years, 5 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 | « no previous file | tools/relocation_packer/src/debug.h » ('j') | tools/relocation_packer/src/elf_file.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/relocation_packer/relocation_packer.gyp
diff --git a/tools/relocation_packer/relocation_packer.gyp b/tools/relocation_packer/relocation_packer.gyp
index 4642a27c2238500a5aa98ea3ccd7a56ada2783cf..0db5d5822e188b2b1927cbf5a49e1e50fe19d97a 100644
--- a/tools/relocation_packer/relocation_packer.gyp
+++ b/tools/relocation_packer/relocation_packer.gyp
@@ -8,6 +8,9 @@
'target_name': 'lib_relocation_packer',
'toolsets': ['host'],
'type': 'static_library',
+ 'cflags': [
+ '-DTARGET_ARM',
rmcilroy 2014/07/18 14:05:17 Could you pull this out into a variable and use th
simonb (inactive) 2014/07/21 12:15:49 Done.
+ ],
'dependencies': [
'../../third_party/elfutils/elfutils.gyp:libelf',
],
@@ -23,6 +26,9 @@
'target_name': 'relocation_packer',
'toolsets': ['host'],
'type': 'executable',
+ 'cflags': [
+ '-DTARGET_ARM',
+ ],
'dependencies': [
'../../third_party/elfutils/elfutils.gyp:libelf',
'lib_relocation_packer',
@@ -36,6 +42,7 @@
'toolsets': ['host'],
'type': 'executable',
'cflags': [
+ '-DTARGET_ARM',
'-DINTERMEDIATE_DIR="<(INTERMEDIATE_DIR)"',
],
'dependencies': [
« no previous file with comments | « no previous file | tools/relocation_packer/src/debug.h » ('j') | tools/relocation_packer/src/elf_file.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698