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

Side by Side Diff: content/content_tests.gypi

Issue 259033002: [Android] Implement renderer side of Gin Java Bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use gin::ArrayBufferView instead of blink::WebArrayBufferView in GinJavaBridgeValueConverter Created 6 years, 7 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'layouttest_support_content', 8 'target_name': 'layouttest_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'conditions': [ 10 'conditions': [
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 ], 858 ],
859 }], 859 }],
860 ['use_aura!=1 and OS!="mac"', { 860 ['use_aura!=1 and OS!="mac"', {
861 'sources/': [ 861 'sources/': [
862 ['exclude', '^browser/compositor/'], 862 ['exclude', '^browser/compositor/'],
863 ], 863 ],
864 }], 864 }],
865 ['OS == "android"', { 865 ['OS == "android"', {
866 'sources': [ 866 'sources': [
867 'browser/renderer_host/java/jni_helper_unittest.cc', 867 'browser/renderer_host/java/jni_helper_unittest.cc',
868 'renderer/java/gin_java_bridge_value_converter_unittest.cc',
868 ], 869 ],
869 'sources!': [ 870 'sources!': [
870 'browser/geolocation/network_location_provider_unittest.cc', 871 'browser/geolocation/network_location_provider_unittest.cc',
871 'browser/geolocation/wifi_data_provider_chromeos_unittest.cc', 872 'browser/geolocation/wifi_data_provider_chromeos_unittest.cc',
872 'browser/geolocation/wifi_data_provider_common_unittest.cc', 873 'browser/geolocation/wifi_data_provider_common_unittest.cc',
873 'browser/geolocation/wifi_data_provider_linux_unittest.cc', 874 'browser/geolocation/wifi_data_provider_linux_unittest.cc',
874 ], 875 ],
875 }], 876 }],
876 ['OS != "android" and OS != "ios"', { 877 ['OS != "android" and OS != "ios"', {
877 'dependencies': [ 878 'dependencies': [
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
1827 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1828 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1828 }, 1829 },
1829 ], 1830 ],
1830 }], 1831 }],
1831 ], 1832 ],
1832 }, 1833 },
1833 ], 1834 ],
1834 }], 1835 }],
1835 ], 1836 ],
1836 } 1837 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698