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

Unified Diff: dart/runtime/tools/gyp/runtime_configurations_android.gypi

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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 | « dart/runtime/tools/gyp/runtime-configurations.gypi ('k') | dart/runtime/vm/allocation_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/tools/gyp/runtime_configurations_android.gypi
===================================================================
--- dart/runtime/tools/gyp/runtime_configurations_android.gypi (revision 31530)
+++ dart/runtime/tools/gyp/runtime_configurations_android.gypi (working copy)
@@ -1,57 +0,0 @@
-# Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-# Definitions for building Chrome with Dart on Android.
-# This is mostly excerpted from:
-# http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi
-
-{
- 'variables': {
- 'dart_io_support': 0,
- },
- 'target_defaults': {
- 'cflags': [
- '-Wno-abi',
- '-Wall',
- '-W',
- '-Wno-unused-parameter',
- '-Wnon-virtual-dtor',
- '-fno-rtti',
- '-fno-exceptions',
- ],
- 'target_conditions': [
- ['_toolset=="target"', {
- 'cflags!': [
- '-pthread', # Not supported by Android toolchain.
- ],
- 'cflags': [
- '-U__linux__', # Don't allow toolchain to claim -D__linux__
- '-ffunction-sections',
- '-funwind-tables',
- '-fstack-protector',
- '-fno-short-enums',
- '-finline-limit=64',
- '-Wa,--noexecstack',
- ],
- 'defines': [
- 'ANDROID',
- 'USE_STLPORT=1',
- '_STLP_USE_PTR_SPECIALIZATIONS=1',
- '_STLP_NO_CSTD_FUNCTION_IMPORTS=1',
- 'HAVE_OFF64_T',
- 'HAVE_SYS_UIO_H',
- ],
- 'ldflags!': [
- '-pthread', # Not supported by Android toolchain.
- ],
- 'ldflags': [
- '-nostdlib',
- '-Wl,--no-undefined',
- # Don't export symbols from statically linked libraries.
- '-Wl,--exclude-libs=ALL',
- ],
- }], # _toolset=="target"
- ], # target_conditions
- }, # target_defaults
-}
« no previous file with comments | « dart/runtime/tools/gyp/runtime-configurations.gypi ('k') | dart/runtime/vm/allocation_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698