OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'conditions': [ | 6 'conditions': [ |
7 ['OS=="android"', { | 7 ['OS=="android"', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'native_test_apk', | 10 'target_name': 'native_test_apk', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'direct_dependent_settings': { | 60 'direct_dependent_settings': { |
61 'ldflags!': [ | 61 'ldflags!': [ |
62 # JNI_OnLoad is implemented in a .a and we need to | 62 # JNI_OnLoad is implemented in a .a and we need to |
63 # re-export in the .so. | 63 # re-export in the .so. |
64 '-Wl,--exclude-libs=ALL', | 64 '-Wl,--exclude-libs=ALL', |
65 ], | 65 ], |
66 }, | 66 }, |
67 'dependencies': [ | 67 'dependencies': [ |
68 '../../base/base.gyp:base', | 68 '../../base/base.gyp:base', |
69 '../../base/base.gyp:test_support_base', | 69 '../../base/base.gyp:test_support_base', |
| 70 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:
dynamic_annotations', |
70 '../gtest.gyp:gtest', | 71 '../gtest.gyp:gtest', |
71 'native_test_jni_headers', | 72 'native_test_jni_headers', |
72 'native_test_util', | 73 'native_test_util', |
73 ], | 74 ], |
74 }, | 75 }, |
75 { | 76 { |
76 'target_name': 'native_test_jni_headers', | 77 'target_name': 'native_test_jni_headers', |
77 'type': 'none', | 78 'type': 'none', |
78 'sources': [ | 79 'sources': [ |
79 'java/src/org/chromium/native_test/ChromeNativeTestActivity.java' | 80 'java/src/org/chromium/native_test/ChromeNativeTestActivity.java' |
(...skipping 18 matching lines...) Expand all Loading... |
98 'native_test_util.h', | 99 'native_test_util.h', |
99 ], | 100 ], |
100 'dependencies': [ | 101 'dependencies': [ |
101 '../../base/base.gyp:base', | 102 '../../base/base.gyp:base', |
102 ], | 103 ], |
103 }, | 104 }, |
104 ], | 105 ], |
105 }] | 106 }] |
106 ], | 107 ], |
107 } | 108 } |
OLD | NEW |