diff options
author | jingzhao@chromium.org <jingzhao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 07:53:01 +0000 |
---|---|---|
committer | jingzhao@chromium.org <jingzhao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 07:53:01 +0000 |
commit | a0e48b0f8d0d036df2435693443a638fc987b7db (patch) | |
tree | e2b1ac5d4fa81bd60db510fdfcd8639fc31608cd /build/android | |
parent | f4e5d4f473c6b8cef1084c75e08271455b6754a7 (diff) | |
download | chromium_src-a0e48b0f8d0d036df2435693443a638fc987b7db.zip chromium_src-a0e48b0f8d0d036df2435693443a638fc987b7db.tar.gz chromium_src-a0e48b0f8d0d036df2435693443a638fc987b7db.tar.bz2 |
Upstream: Gyp changes to build net_unittests for Android.
BUG=
TEST=
Review URL: http://codereview.chromium.org/8610006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111114 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android')
-rw-r--r-- | build/android/system.gyp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build/android/system.gyp b/build/android/system.gyp new file mode 100644 index 0000000..dd1d521 --- /dev/null +++ b/build/android/system.gyp @@ -0,0 +1,24 @@ +# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'ssl', + 'type': 'none', + 'direct_dependent_settings': { + 'defines': [ + 'USE_OPENSSL', + ], + 'include_dirs': [ + '../../third_party/openssl/openssl/include', + '../../third_party/openssl/config/android', + ], + }, + 'dependencies': [ + '../../third_party/openssl/openssl.gyp:openssl', + ], + }, + ], +} |