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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'webview_native', | 10 'target_name': 'webview_native', |
(...skipping 24 matching lines...) Expand all Loading... |
35 'aw_http_auth_handler.cc', | 35 'aw_http_auth_handler.cc', |
36 'aw_http_auth_handler.h', | 36 'aw_http_auth_handler.h', |
37 'aw_javascript_dialog_creator.cc', | 37 'aw_javascript_dialog_creator.cc', |
38 'aw_javascript_dialog_creator.h', | 38 'aw_javascript_dialog_creator.h', |
39 'aw_resource.h', | 39 'aw_resource.h', |
40 'aw_resource.cc', | 40 'aw_resource.cc', |
41 'aw_web_contents_delegate.cc', | 41 'aw_web_contents_delegate.cc', |
42 'aw_web_contents_delegate.h', | 42 'aw_web_contents_delegate.h', |
43 'cookie_manager.cc', | 43 'cookie_manager.cc', |
44 'cookie_manager.h', | 44 'cookie_manager.h', |
| 45 'input_stream.cc', |
| 46 'input_stream.h', |
| 47 'input_stream_reader.cc', |
| 48 'input_stream_reader.h', |
45 'intercepted_request_data_impl.cc', | 49 'intercepted_request_data_impl.cc', |
46 'intercepted_request_data_impl.h', | 50 'intercepted_request_data_impl.h', |
47 'js_result_handler.cc', | 51 'js_result_handler.cc', |
48 'js_result_handler.h', | 52 'js_result_handler.h', |
49 'net_init_native_callback.cc', | 53 'net_init_native_callback.cc', |
50 ], | 54 ], |
51 }, | 55 }, |
52 { | 56 { |
53 'target_name': 'android_jar_jni_headers', | 57 'target_name': 'android_jar_jni_headers', |
54 'type': 'none', | 58 'type': 'none', |
(...skipping 20 matching lines...) Expand all Loading... |
75 'variables': { | 79 'variables': { |
76 'jni_gen_dir': 'android_webview', | 80 'jni_gen_dir': 'android_webview', |
77 }, | 81 }, |
78 'includes': [ '../../build/jni_generator.gypi' ], | 82 'includes': [ '../../build/jni_generator.gypi' ], |
79 'dependencies': [ | 83 'dependencies': [ |
80 'android_jar_jni_headers', | 84 'android_jar_jni_headers', |
81 ], | 85 ], |
82 }, | 86 }, |
83 ], | 87 ], |
84 } | 88 } |
OLD | NEW |