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

Side by Side Diff: content/content_tests.gypi

Issue 750633003: Implement HasPermission() method in PermissionService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove comment in content_tests.gypi Created 6 years 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
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 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 ], 192 ],
193 'sources': [ '<@(layouttest_support_content_sources)' ] 193 'sources': [ '<@(layouttest_support_content_sources)' ]
194 }], 194 }],
195 ], 195 ],
196 }, 196 },
197 { 197 {
198 # GN version: //content/test:test_support 198 # GN version: //content/test:test_support
199 'target_name': 'test_support_content', 199 'target_name': 'test_support_content',
200 'type': 'static_library', 200 'type': 'static_library',
201 'dependencies': [ 201 'dependencies': [
202 '../mojo/edk/mojo_edk.gyp:mojo_system_impl',
203 '../mojo/mojo_base.gyp:mojo_environment_chromium',
202 '../net/net.gyp:net_test_support', 204 '../net/net.gyp:net_test_support',
203 '../skia/skia.gyp:skia', 205 '../skia/skia.gyp:skia',
204 '../storage/storage_common.gyp:storage_common', 206 '../storage/storage_common.gyp:storage_common',
205 '../testing/gmock.gyp:gmock', 207 '../testing/gmock.gyp:gmock',
206 '../testing/gtest.gyp:gtest', 208 '../testing/gtest.gyp:gtest',
207 '../ui/accessibility/accessibility.gyp:ax_gen', 209 '../ui/accessibility/accessibility.gyp:ax_gen',
208 '../ui/base/ui_base.gyp:ui_base', 210 '../ui/base/ui_base.gyp:ui_base',
209 '../ui/base/ui_base.gyp:ui_base_test_support', 211 '../ui/base/ui_base.gyp:ui_base_test_support',
210 '../ui/events/events.gyp:dom4_keycode_converter', 212 '../ui/events/events.gyp:dom4_keycode_converter',
211 '../ui/events/events.gyp:events_base', 213 '../ui/events/events.gyp:events_base',
(...skipping 1636 matching lines...) Expand 10 before | Expand all | Expand 10 after
1848 }, 1850 },
1849 'includes': [ '../build/jni_generator.gypi' ], 1851 'includes': [ '../build/jni_generator.gypi' ],
1850 }, 1852 },
1851 { 1853 {
1852 # GN: //content/public/test/android:content_java_test_support 1854 # GN: //content/public/test/android:content_java_test_support
1853 'target_name': 'content_java_test_support', 1855 'target_name': 'content_java_test_support',
1854 'type': 'none', 1856 'type': 'none',
1855 'dependencies': [ 1857 'dependencies': [
1856 '../base/base.gyp:base', 1858 '../base/base.gyp:base',
1857 '../base/base.gyp:base_java_test_support', 1859 '../base/base.gyp:base_java_test_support',
1858 'content.gyp:content_common',
1859 'content.gyp:content_java', 1860 'content.gyp:content_java',
1860 ], 1861 ],
1861 'variables': { 1862 'variables': {
1862 'java_in_dir': '../content/public/test/android/javatests', 1863 'java_in_dir': '../content/public/test/android/javatests',
1863 }, 1864 },
1864 'includes': [ '../build/java.gypi' ], 1865 'includes': [ '../build/java.gypi' ],
1865 }, 1866 },
1866 { 1867 {
1867 # GN: //content/shell/android:content_shell_test_apk 1868 # GN: //content/shell/android:content_shell_test_apk
1868 # and //content/public/android:content_javatests 1869 # and //content/public/android:content_javatests
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
2033 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2034 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2034 }, 2035 },
2035 ], 2036 ],
2036 }], 2037 }],
2037 ], 2038 ],
2038 }, 2039 },
2039 ], 2040 ],
2040 }], 2041 }],
2041 ], 2042 ],
2042 } 2043 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698