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

Unified Diff: build/common.gypi

Issue 387023: Building FFmpeg in tree for arm (Closed)
Patch Set: moved dependencies Created 11 years, 1 month 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/all.gyp ('k') | third_party/ffmpeg/ffmpeg.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 1cc8cca1d1fbf928ff194e1e0feeb683366b471c..a73c75fad2c764badd65ac279b03ae2f1fd7f242 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -670,13 +670,17 @@
],
}],
['target_arch=="arm"', {
- 'target_conditions': [
- ['armv7==1 and _toolset=="target"', {
- 'cflags': [
- '-march=armv7-a',
- '-mtune=cortex-a8',
- '-mfpu=neon',
- '-mfloat-abi=softfp',
+ 'conditions': [
+ ['armv7==1', {
+ 'target_conditions': [
+ ['_toolset=="target"', {
+ 'cflags': [
+ '-march=armv7-a',
+ '-mtune=cortex-a8',
+ '-mfpu=neon',
+ '-mfloat-abi=softfp',
+ ],
+ }],
],
}],
],
« no previous file with comments | « build/all.gyp ('k') | third_party/ffmpeg/ffmpeg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698