Index: url/url.gyp |
diff --git a/url/url.gyp b/url/url.gyp |
deleted file mode 100644 |
index 12f23f5a96c26a1cb6382902d0a477ed197e0243..0000000000000000000000000000000000000000 |
--- a/url/url.gyp |
+++ /dev/null |
@@ -1,292 +0,0 @@ |
-# Copyright 2013 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-{ |
- 'variables': { |
- 'chromium_code': 1, |
- }, |
- 'includes': [ |
- 'url_srcs.gypi', |
- ], |
- 'targets': [ |
- { |
- # Note, this target_name cannot be 'url', because that will generate |
- # 'url.dll' for a Windows component build, and that will confuse Windows, |
- # which has a system DLL with the same name. |
- 'target_name': 'url_lib', |
- 'type': '<(component)', |
- 'dependencies': [ |
- '../base/base.gyp:base', |
- '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', |
- ':url_url_features', |
- ], |
- 'sources': [ |
- '<@(gurl_sources)', |
- ], |
- 'direct_dependent_settings': { |
- 'include_dirs': [ |
- '..', |
- ], |
- }, |
- 'defines': [ |
- 'URL_IMPLEMENTATION', |
- ], |
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
- 'msvs_disabled_warnings': [4267, ], |
- |
- # ICU Alternatives for Android & iOS |
- 'conditions': [ |
- ['use_platform_icu_alternatives == 1', { |
- 'sources!': [ |
- 'url_canon_icu.cc', |
- 'url_canon_icu.h', |
- ], |
- 'conditions': [ |
- ['OS == "android"', { |
- 'dependencies': [ |
- 'url_java', |
- 'url_jni_headers', |
- ], |
- 'sources': [ |
- 'url_canon_icu_alternatives_android.cc', |
- ], |
- }], |
- ['OS == "ios"', { |
- 'sources': [ |
- 'url_canon_icu_alternatives_ios.mm', |
- ], |
- }], |
- ], |
- }, |
- # 'use_platform_icu_alternatives != 1' |
- { |
- 'dependencies': [ |
- '../third_party/icu/icu.gyp:icui18n', |
- '../third_party/icu/icu.gyp:icuuc', |
- ], |
- }], |
- ], |
- }, |
- { |
- 'target_name': 'url_unittests', |
- 'type': 'executable', |
- 'dependencies': [ |
- '../base/base.gyp:test_support_base', |
- '../testing/gtest.gyp:gtest', |
- '../third_party/icu/icu.gyp:icuuc', |
- 'url_test_mojom', |
- 'url_lib', |
- ], |
- 'sources': [ |
- 'gurl_unittest.cc', |
- 'origin_unittest.cc', |
- 'run_all_unittests.cc', |
- 'scheme_host_port_unittest.cc', |
- 'url_canon_icu_unittest.cc', |
- 'url_canon_unittest.cc', |
- 'url_parse_unittest.cc', |
- 'url_test_utils.h', |
- 'url_util_unittest.cc', |
- ], |
- 'conditions': [ |
- ['OS!="ios"', { |
- 'sources': [ |
- 'mojo/url_gurl_struct_traits_unittest.cc', |
- ], |
- 'dependencies': [ |
- '../mojo/mojo_edk.gyp:mojo_common_test_support', |
- ], |
- }], |
- # Unit tests that are not supported by the current ICU alternatives on Android. |
- ['OS == "android" and use_platform_icu_alternatives == 1', { |
- 'sources!': [ |
- 'url_canon_icu_unittest.cc', |
- ], |
- }], |
- # Unit tests that are not supported by the current ICU alternatives on iOS. |
- ['OS == "ios" and use_platform_icu_alternatives == 1', { |
- 'sources!': [ |
- 'origin_unittest.cc', |
- 'scheme_host_port_unittest.cc', |
- 'url_canon_icu_unittest.cc', |
- 'url_canon_unittest.cc', |
- ], |
- }], |
- ], |
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
- 'msvs_disabled_warnings': [4267, ], |
- }, |
- { |
- 'target_name': 'url_interfaces_mojom', |
- 'type': 'none', |
- 'variables': { |
- 'mojom_files': [ |
- 'mojo/origin.mojom', |
- 'mojo/url.mojom', |
- ], |
- 'mojom_typemaps': [ |
- 'mojo/gurl.typemap', |
- 'mojo/origin.typemap', |
- ], |
- }, |
- 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], |
- }, |
- { |
- # GN version: //url/mojo:url_mojom_gurl and //url/mojo:url_mojom_origin |
- 'target_name': 'url_mojom', |
- 'type': 'static_library', |
- 'export_dependent_settings': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- ], |
- # url_interfaces_mojom generates headers and is a hard dependency. |
- # That hard dependency status is not propagated to this target, so |
- # we must set it explicitly. |
- 'hard_dependency': 1, |
- 'dependencies': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- 'url_interfaces_mojom', |
- 'url_lib', |
- ], |
- }, |
- { |
- # GN version: //url/mojo:test_url_mojom_gurl |
- 'target_name': 'url_test_interfaces_mojom', |
- 'type': 'none', |
- 'variables': { |
- 'mojom_files': [ |
- 'mojo/url_test.mojom', |
- ], |
- 'mojom_typemaps': [ |
- 'mojo/gurl.typemap', |
- 'mojo/origin.typemap', |
- ], |
- }, |
- 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], |
- 'dependencies': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- ], |
- }, |
- { |
- 'target_name': 'url_test_mojom', |
- 'type': 'static_library', |
- 'export_dependent_settings': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- ], |
- 'dependencies': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- 'url_lib', |
- 'url_mojom', |
- 'url_test_interfaces_mojom', |
- ], |
- }, |
- { |
- # GN version: //url:url_features |
- 'target_name': 'url_url_features', |
- 'includes': [ '../build/buildflag_header.gypi' ], |
- 'variables': { |
- 'buildflag_header_path': 'url/url_features.h', |
- 'buildflag_flags': [ |
- 'USE_PLATFORM_ICU_ALTERNATIVES=<(use_platform_icu_alternatives)', |
- ], |
- }, |
- } |
- ], |
- 'conditions': [ |
- ['OS=="android"', { |
- 'targets': [ |
- { |
- 'target_name': 'url_jni_headers', |
- 'type': 'none', |
- 'sources': [ |
- 'android/java/src/org/chromium/url/IDNStringUtil.java' |
- ], |
- 'variables': { |
- 'jni_gen_package': 'url', |
- }, |
- 'includes': [ '../build/jni_generator.gypi' ], |
- }, |
- { |
- 'target_name': 'url_java', |
- 'type': 'none', |
- 'variables': { |
- 'java_in_dir': '../url/android/java', |
- }, |
- 'dependencies': [ |
- '../base/base.gyp:base', |
- ], |
- 'includes': [ '../build/java.gypi' ], |
- }, |
- ], |
- }], |
- ['OS!="ios"', { |
- 'targets': [ |
- { |
- 'target_name': 'url_interfaces_mojom_for_blink', |
- 'type': 'none', |
- 'variables': { |
- 'for_blink': 'true', |
- 'mojom_files': [ |
- 'mojo/origin.mojom', |
- 'mojo/url.mojom', |
- ], |
- 'mojom_typemaps': [ |
- '../third_party/WebKit/Source/platform/mojo/KURL.typemap', |
- '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap', |
- ], |
- }, |
- 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], |
- }, |
- { |
- # GN version: //url/mojo:url_mojom_gurl_blink and //url/mojo:url_mojom_origin_blink |
- 'target_name': 'url_mojom_for_blink', |
- 'type': 'static_library', |
- 'export_dependent_settings': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- ], |
- 'dependencies': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- 'url_interfaces_mojom_for_blink', |
- 'url_lib', |
- ], |
- }, |
- { |
- # GN version: //url/mojo:test_url_mojom_gurl_blink |
- 'target_name': 'url_test_interfaces_mojom_for_blink', |
- 'type': 'none', |
- 'variables': { |
- 'for_blink': 'true', |
- 'mojom_files': [ |
- 'mojo/url_test.mojom', |
- ], |
- 'mojom_typemaps': [ |
- '../third_party/WebKit/Source/platform/mojo/KURL.typemap', |
- '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap', |
- ], |
- }, |
- 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], |
- 'dependencies': [ |
- '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
- ], |
- }, |
- ], |
- }], |
- ['test_isolation_mode != "noop"', { |
- 'targets': [ |
- { |
- 'target_name': 'url_unittests_run', |
- 'type': 'none', |
- 'dependencies': [ |
- 'url_unittests', |
- ], |
- 'includes': [ |
- '../build/isolate.gypi', |
- ], |
- 'sources': [ |
- 'url_unittests.isolate', |
- ], |
- }, |
- ], |
- }], |
- ], |
-} |