Chromium Code Reviews| Index: components/web_restrictions.gypi |
| diff --git a/components/web_restrictions.gypi b/components/web_restrictions.gypi |
| index 772e230dc51bf9604ed5c059b26aedae2d6dab8e..f0e4c0f5b316fc190e53f5bd5253d8d85d915061 100644 |
| --- a/components/web_restrictions.gypi |
| +++ b/components/web_restrictions.gypi |
| @@ -11,13 +11,81 @@ |
| 'target_name': 'web_restrictions_java', |
| 'type': 'none', |
| 'variables': { |
| - 'java_in_dir': 'web_restrictions/java', |
| + 'java_in_dir': 'web_restrictions/browser/java', |
| }, |
| 'dependencies': [ |
| '../base/base.gyp:base', |
| ], |
| 'includes': [ '../build/java.gypi' ], |
| }, |
| + { |
| + # GN: //components/web_restrictions:web_restrictions_jni_headers |
| + 'target_name': 'web_restrictions_jni_headers', |
| + 'type': 'none', |
| + 'sources': [ |
| + 'web_restrictions/browser/java/src/org/chromium/components/webrestrictions/WebRestrictionsClient.java', |
| + ], |
| + 'variables': { |
| + 'jni_gen_package': 'components/web_restrictions', |
| + }, |
| + 'includes': [ '../build/jni_generator.gypi' ], |
| + }, |
| + { |
| + # GN: //components/web_restrictions:browser |
| + 'target_name': 'web_restrictions_browser', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '<(DEPTH)/base/base.gyp:base', |
| + '<(DEPTH)/content/content.gyp:content_browser', |
| + 'web_restrictions_jni_headers', |
| + ], |
| + 'sources': [ |
| + "web_restrictions/browser/web_restrictions_client.cc", |
| + "web_restrictions/browser/web_restrictions_client.h", |
| + "web_restrictions/browser/web_restrictions_resource_throttle.cc", |
| + "web_restrictions/browser/web_restrictions_resource_throttle.h", |
| + ], |
| + }, |
| + { |
| + # GN: //components/web_restrictions:renderer |
| + 'target_name': 'web_restrictions_renderer', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '<(DEPTH)/base/base.gyp:base', |
| + '<(DEPTH)/content/content.gyp:content_browser', |
| + 'web_restrictions_jni_headers', |
| + ], |
| + 'sources': [ |
| + "web_restrictions/renderer/web_restrictions_gin_wrapper.cc", |
| + "web_restrictions/renderer/web_restrictions_gin_wrapper.h", |
| + ], |
| + }, |
| + { |
| + 'target_name': 'web_restrictions_test_support_jni_headers', |
| + 'type': 'none', |
| + 'sources': [ |
| + 'web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/MockWebRestrictionsClient.java', |
| + ], |
| + 'variables': { |
| + 'jni_gen_package': 'components/web_restrictions', |
| + }, |
| + 'includes': [ '../build/jni_generator.gypi' ], |
| + }, |
| + { |
| + 'target_name': 'web_restrictions_java_test_support', |
|
Bernhard Bauer
2016/02/23 14:29:13
I think this should be web_restrictions_test_suppo
aberent
2016/02/23 16:26:51
Done.
|
| + 'type': 'none', |
| + 'dependencies': [ |
| + 'components.gyp:web_restrictions_java', |
| + '../base/base.gyp:base_java', |
| + ], |
| + 'variables': { |
| + 'java_in_dir': [ |
| + 'web_restrictions/browser/javatest/' |
| + ], |
| + }, |
| + 'includes': [ '../build/java.gypi' ], |
| + } |
| + |
| ], |
| }]] |
| } |