From 486119deb3577cd46bd2e1aa848773b0ac48ddd8 Mon Sep 17 00:00:00 2001 From: Antonio Gomes Date: Sun, 26 Oct 2014 04:28:14 -0700 Subject: [PATCH] fixup! [Tizen] Switch chromium-efl / mobile development to GCC 4.8 Remove experimental c++11 enabling line, now that it is not explicitly needed. Also remove a GCC 4.5 specific workaround, also not needed anymore. Bug: http://107.108.218.239/bugzilla/show_bug.cgi?id=5458 Reviewed by: Laszlo Gombos, Kangil Han Change-Id: I89e7c320e22631a5c32587666f5480a7aead4d94 Signed-off-by: Antonio Gomes --- tizen_src/impl/chromium-efl.gypi | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tizen_src/impl/chromium-efl.gypi b/tizen_src/impl/chromium-efl.gypi index 7cbd450..a8f5e79a 100644 --- a/tizen_src/impl/chromium-efl.gypi +++ b/tizen_src/impl/chromium-efl.gypi @@ -37,10 +37,6 @@ ['building_for_tizen==1', { 'defines': [ 'OS_TIZEN=1', - # For GCC 4.5.3 bundled arm.h has a bug and don't define __ARM_PCS when it should. - # Force define this flag for the whole chromium on gbs gcc 4.5.3. - # Non-arm builds will ingore it in any case. - '__ARM_PCS', ], 'conditions': [ ['chromium_efl_tizen_version=="2.3"', { @@ -57,7 +53,6 @@ 'sources/': [ ['exclude', 'browser/device_sensors/data_fetcher_shared_memory_default.cc$'], ], - 'cflags_cc': [ '-std=gnu++0x', '-fpermissive' ], }, { 'sources/': [ ['exclude', 'browser/device_sensors/data_fetcher_impl_tizen\\.(cc|h)$'], @@ -77,7 +72,9 @@ ], }], ['building_for_tizen==1 and building_for_tizen_tv==1', { - 'defines': ['OS_TIZEN_TV=1'], + 'defines': [ + 'OS_TIZEN_TV=1' + ], }], ['host_arch=="arm"', { 'target_conditions': [ @@ -88,7 +85,6 @@ }], ], }], - ], }, } -- 2.7.4