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

Unified Diff: media/media.gyp

Issue 170073002: Define ARCH_X86_32 and ARCH_X86_64 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 6790d2814a7ead05d957c732f5c51f1e6eb6f40a..49ce8d1f63bf130dbc02d480e42816b2bc2a8a05 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -1332,11 +1332,12 @@
'conditions': [
['target_arch=="ia32"', {
'yasm_flags': [
- '-DX86_32',
+ '-DARCH_X86_32',
'-DELF',
],
- }, {
+ }, { # target_arch=="x64"
'yasm_flags': [
+ '-DARCH_X86_64',
'-DELF',
'-DPIC',
],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698