Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: net/net.gyp

Issue 10693068: Refactor Android's NetworckChangeNotifier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 1859 matching lines...) Expand 10 before | Expand all | Expand 10 after
1870 ] 1870 ]
1871 }], 1871 }],
1872 ['OS=="android"', { 1872 ['OS=="android"', {
1873 'targets': [ 1873 'targets': [
1874 { 1874 {
1875 'target_name': 'net_jni_headers', 1875 'target_name': 'net_jni_headers',
1876 'type': 'none', 1876 'type': 'none',
1877 'variables': { 1877 'variables': {
1878 'java_sources': [ 1878 'java_sources': [
1879 'android/java/src/org/chromium/net/AndroidNetworkLibrary.java', 1879 'android/java/src/org/chromium/net/AndroidNetworkLibrary.java',
1880 'android/java/src/org/chromium/net/NetworkChangeNotifier.java',
1881 'android/java/src/org/chromium/net/ProxyChangeListener.java', 1880 'android/java/src/org/chromium/net/ProxyChangeListener.java',
1882 ], 1881 ],
1883 'jni_headers': [ 1882 'jni_headers': [
1884 '<(SHARED_INTERMEDIATE_DIR)/net/jni/android_network_library_jni.h' , 1883 '<(SHARED_INTERMEDIATE_DIR)/net/jni/android_network_library_jni.h' ,
1885 '<(SHARED_INTERMEDIATE_DIR)/net/jni/network_change_notifier_jni.h' ,
1886 '<(SHARED_INTERMEDIATE_DIR)/net/jni/proxy_change_listener_jni.h', 1884 '<(SHARED_INTERMEDIATE_DIR)/net/jni/proxy_change_listener_jni.h',
1887 ], 1885 ],
1888 }, 1886 },
1889 'includes': [ '../build/jni_generator.gypi' ], 1887 'includes': [ '../build/jni_generator.gypi' ],
1890 }, 1888 },
1891 { 1889 {
1892 'target_name': 'net_java', 1890 'target_name': 'net_java',
1893 'type': 'none', 1891 'type': 'none',
1894 'variables': { 1892 'variables': {
1895 'package_name': 'net', 1893 'package_name': 'net',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1947 'tools/dump_cache/url_to_filename_encoder.cc', 1945 'tools/dump_cache/url_to_filename_encoder.cc',
1948 'tools/dump_cache/url_to_filename_encoder.h', 1946 'tools/dump_cache/url_to_filename_encoder.h',
1949 'tools/dump_cache/url_utilities.h', 1947 'tools/dump_cache/url_utilities.h',
1950 'tools/dump_cache/url_utilities.cc', 1948 'tools/dump_cache/url_utilities.cc',
1951 ], 1949 ],
1952 }, 1950 },
1953 ], 1951 ],
1954 }], 1952 }],
1955 ], 1953 ],
1956 } 1954 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698