| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This target is included into both 'cronet_static' and 'cronet_static_small'. | 6 # This target is included into both 'cronet_static' and 'cronet_static_small'. |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'dependencies': [ | 8 'dependencies': [ |
| 9 '../base/base.gyp:base', | 9 '../base/base.gyp:base', |
| 10 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 10 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'android/cronet_url_request_adapter.cc', | 34 'android/cronet_url_request_adapter.cc', |
| 35 'android/cronet_url_request_adapter.h', | 35 'android/cronet_url_request_adapter.h', |
| 36 'android/cronet_url_request_context_adapter.cc', | 36 'android/cronet_url_request_context_adapter.cc', |
| 37 'android/cronet_url_request_context_adapter.h', | 37 'android/cronet_url_request_context_adapter.h', |
| 38 'android/url_request_adapter.cc', | 38 'android/url_request_adapter.cc', |
| 39 'android/url_request_adapter.h', | 39 'android/url_request_adapter.h', |
| 40 'android/url_request_context_adapter.cc', | 40 'android/url_request_context_adapter.cc', |
| 41 'android/url_request_context_adapter.h', | 41 'android/url_request_context_adapter.h', |
| 42 'android/wrapped_channel_upload_element_reader.cc', | 42 'android/wrapped_channel_upload_element_reader.cc', |
| 43 'android/wrapped_channel_upload_element_reader.h', | 43 'android/wrapped_channel_upload_element_reader.h', |
| 44 'histogram_manager.cc', |
| 45 'histogram_manager.h', |
| 44 'url_request_context_config.cc', | 46 'url_request_context_config.cc', |
| 45 'url_request_context_config.h', | 47 'url_request_context_config.h', |
| 46 'url_request_context_config_list.h', | 48 'url_request_context_config_list.h', |
| 47 ], | 49 ], |
| 48 'cflags': [ | 50 'cflags': [ |
| 49 '-DLOGGING=1', | 51 '-DLOGGING=1', |
| 50 '-fdata-sections', | 52 '-fdata-sections', |
| 51 '-ffunction-sections', | 53 '-ffunction-sections', |
| 52 '-fno-rtti', | 54 '-fno-rtti', |
| 53 '-fvisibility=hidden', | 55 '-fvisibility=hidden', |
| 54 '-fvisibility-inlines-hidden', | 56 '-fvisibility-inlines-hidden', |
| 55 '-Wno-sign-promo', | 57 '-Wno-sign-promo', |
| 56 '-Wno-missing-field-initializers', | 58 '-Wno-missing-field-initializers', |
| 57 ], | 59 ], |
| 58 'ldflags': [ | 60 'ldflags': [ |
| 59 '-llog', | 61 '-llog', |
| 60 '-landroid', | 62 '-landroid', |
| 61 '-Wl,--gc-sections', | 63 '-Wl,--gc-sections', |
| 62 '-Wl,--exclude-libs,ALL' | 64 '-Wl,--exclude-libs,ALL' |
| 63 ], | 65 ], |
| 64 } | 66 } |
| OLD | NEW |