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

Side by Side Diff: tools/gyp/configurations_android.gypi

Issue 1811583003: Don't compile in root certs on Android. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merge Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « runtime/tools/gyp/runtime-configurations.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # Definitions for building standalone Dart binaries to run on Android. 5 # Definitions for building standalone Dart binaries to run on Android.
6 # This is mostly excerpted from: 6 # This is mostly excerpted from:
7 # http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi 7 # http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi
8 8
9 { 9 {
10 'variables': { 10 'variables': {
11 'dart_io_ssl_builtin_roots': 0,
11 'android_ndk_root': '<(PRODUCT_DIR)/../../third_party/android_tools/ndk', 12 'android_ndk_root': '<(PRODUCT_DIR)/../../third_party/android_tools/ndk',
12 }, # variables 13 }, # variables
13 'target_defaults': { 14 'target_defaults': {
14 'configurations': { 15 'configurations': {
15 # It is very important to get the order of the linker arguments correct. 16 # It is very important to get the order of the linker arguments correct.
16 # Therefore, we put them all in the architecture specific configurations, 17 # Therefore, we put them all in the architecture specific configurations,
17 # even though there are many flags in common, to avoid splitting them 18 # even though there are many flags in common, to avoid splitting them
18 # between two configurations and possibly accidentally mixing up the 19 # between two configurations and possibly accidentally mixing up the
19 # order. 20 # order.
20 'Dart_Android_Base': { 21 'Dart_Android_Base': {
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 ], 306 ],
306 }], 307 }],
307 ['_toolset=="host"', { 308 ['_toolset=="host"', {
308 'ldflags': [ '-pthread' ], 309 'ldflags': [ '-pthread' ],
309 }], 310 }],
310 ], 311 ],
311 }, # Dart_Android_arm64_Base 312 }, # Dart_Android_arm64_Base
312 }, # configurations 313 }, # configurations
313 }, # target_defaults 314 }, # target_defaults
314 } 315 }
OLDNEW
« no previous file with comments | « runtime/tools/gyp/runtime-configurations.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698