OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 #TODO GN |
| 9 'target_name': 'web_restriction', |
| 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '<(DEPTH)/base/base.gyp:base', |
| 13 '<(DEPTH)/content/content.gyp:content_browser', |
| 14 'web_restriction_jni_headers', |
| 15 ], |
| 16 'sources': [ |
| 17 "web_restriction/content_resolver_web_restriction_provider.cc", |
| 18 "web_restriction/content_resolver_web_restriction_provider.h", |
| 19 "web_restriction/web_restriction_gin_wrapper.cc", |
| 20 "web_restriction/web_restriction_gin_wrapper.h", |
| 21 "web_restriction/web_restriction_provider.h", |
| 22 "web_restriction/web_restriction_resource_throttle.cc", |
| 23 "web_restriction/web_restriction_resource_throttle.h", |
| 24 ], |
| 25 }, |
| 26 { |
| 27 #TODO GN |
| 28 'target_name': 'web_restriction_jni_headers', |
| 29 'type': 'none', |
| 30 'sources': [ |
| 31 'web_restriction/java/src/org/chromium/components/web_restriction/Conten
tResolverWebRestrictionProvider.java', |
| 32 ], |
| 33 'variables': { |
| 34 'jni_gen_package': 'components/web_restriction', |
| 35 }, |
| 36 'includes': [ '../build/jni_generator.gypi' ], |
| 37 }, |
| 38 { |
| 39 #TODO GN |
| 40 'target_name': 'web_restriction_java', |
| 41 'type': 'none', |
| 42 'variables': { |
| 43 'java_in_dir': 'web_restriction/java', |
| 44 }, |
| 45 'dependencies': [ |
| 46 '../base/base.gyp:base', |
| 47 ], |
| 48 'includes': [ '../build/java.gypi' ], |
| 49 }, |
| 50 ], |
| 51 } |
OLD | NEW |