Index: build/android/system.gyp |
diff --git a/build/android/system.gyp b/build/android/system.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..08cf532535407ccf7a4bc422df2e856bb775ef73 |
--- /dev/null |
+++ b/build/android/system.gyp |
@@ -0,0 +1,24 @@ |
+# Copyright (c) 2010 The Chromium Authors. All rights reserved. |
John Grabowski
2011/11/01 23:09:34
Comment on the origin of this file (e.g. likely bu
mmenke
2011/11/01 23:15:22
Random drive by nit: Update copyright year. One
Jing Zhao
2011/11/02 16:22:55
Done.
Jing Zhao
2011/11/02 16:22:55
It's newly written, because we use openssl while L
|
+# 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', |
+ ], |
+ }, |
+ ], |
+} |