Commit c5c03d32 authored by Michael van Ouwerkerk's avatar Michael van Ouwerkerk Committed by Commit Bot

Delete cct_dynamic_modules from third_party.

Bug: 1020124
Change-Id: I0fef980bede485b214754c21c562f92e8fa688e5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2073882Reviewed-by: default avatarAnna Malova <amalova@chromium.org>
Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Reviewed-by: default avatarAlex Gough <ajgo@chromium.org>
Commit-Queue: Michael van Ouwerkerk <mvanouwerkerk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#744998}
parent d8d0b02a
...@@ -354,7 +354,6 @@ check_targets = [ ...@@ -354,7 +354,6 @@ check_targets = [
"//third_party/byte_buddy/*", "//third_party/byte_buddy/*",
"//third_party/cacheinvalidation/*", "//third_party/cacheinvalidation/*",
"//third_party/catapult/*", "//third_party/catapult/*",
"//third_party/cct_dynamic_module/*",
# "//third_party/ced/*", # 6 errors # "//third_party/ced/*", # 6 errors
"//third_party/chaijs/*", "//third_party/chaijs/*",
......
...@@ -837,11 +837,6 @@ deps = { ...@@ -837,11 +837,6 @@ deps = {
'src/third_party/catapult': 'src/third_party/catapult':
Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
'src/third_party/cct_dynamic_module/src': {
'url': Var('chromium_git') + '/dynamicmodule' + '@' + '441bbbf3ab849b8816bb2c827a51df9a81b83a4f',
'condition': 'checkout_android',
},
'src/third_party/ced/src': 'src/third_party/ced/src':
Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5', Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5',
......
...@@ -384,7 +384,6 @@ android_library("chrome_java") { ...@@ -384,7 +384,6 @@ android_library("chrome_java") {
"//third_party/blink/public/mojom:mojom_platform_java", "//third_party/blink/public/mojom:mojom_platform_java",
"//third_party/cacheinvalidation:cacheinvalidation_javalib", "//third_party/cacheinvalidation:cacheinvalidation_javalib",
"//third_party/cacheinvalidation:cacheinvalidation_proto_java", "//third_party/cacheinvalidation:cacheinvalidation_proto_java",
"//third_party/cct_dynamic_module:cct_dynamic_module_java",
"//third_party/gif_player:gif_player_java", "//third_party/gif_player:gif_player_java",
"//third_party/google_android_play_core:com_google_android_play_core_java", "//third_party/google_android_play_core:com_google_android_play_core_java",
"//third_party/jsr-305:jsr_305_javalib", "//third_party/jsr-305:jsr_305_javalib",
...@@ -888,7 +887,6 @@ android_library("chrome_test_java") { ...@@ -888,7 +887,6 @@ android_library("chrome_test_java") {
"//third_party/blink/public/mojom:mojom_mhtml_load_result_java", "//third_party/blink/public/mojom:mojom_mhtml_load_result_java",
"//third_party/blink/public/mojom:mojom_platform_java", "//third_party/blink/public/mojom:mojom_platform_java",
"//third_party/cacheinvalidation:cacheinvalidation_javalib", "//third_party/cacheinvalidation:cacheinvalidation_javalib",
"//third_party/cct_dynamic_module:cct_dynamic_module_java",
"//third_party/espresso:espresso_all_java", "//third_party/espresso:espresso_all_java",
"//third_party/hamcrest:hamcrest_java", "//third_party/hamcrest:hamcrest_java",
"//third_party/jsr-305:jsr_305_javalib", "//third_party/jsr-305:jsr_305_javalib",
......
...@@ -50,7 +50,6 @@ ...@@ -50,7 +50,6 @@
/cacheinvalidation/cacheinvalidation_unittests_run.xml /cacheinvalidation/cacheinvalidation_unittests_run.xml
/cardboard-java/src /cardboard-java/src
/catapult /catapult
/cct_dynamic_module/src
/ced/src /ced/src
/checkstyle/*.jar /checkstyle/*.jar
/chromeos_login_manager /chromeos_login_manager
......
# Copyright 2018 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.
import("//build/config/android/rules.gni")
android_library("cct_dynamic_module_java") {
sources = [
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/BaseActivityDelegate.java",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/BaseActivityHost.java",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/BaseModuleEntryPoint.java",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/BaseModuleHost.java",
]
srcjar_deps = [ ":cct_dynamic_module_aidl" ]
}
android_aidl("cct_dynamic_module_aidl") {
interface_file = "common.aidl"
sources = [
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/IActivityDelegate.aidl",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/IActivityHost.aidl",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/IModuleEntryPoint.aidl",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/IModuleHost.aidl",
"src/src/java/org/chromium/chrome/browser/customtabs/dynamicmodule/IObjectWrapper.aidl",
]
}
mvanouwerkerk@chromium.org
amalova@chromium.org
per-file *.aidl=set noparent
per-file *.aidl=file://ipc/SECURITY_OWNERS
# COMPONENT: UI>Browser>Mobile>CustomTabs
Name: CCT dynamic module
Short name: cct_dynamic_module
URL: https://chromium.googlesource.com/dynamicmodule
Version: 0
Revision: c6d37ea1003931dd44b78f936ca0882956aa3107
License: BSD
License File: src/LICENSE
Security Critical: yes
Description: API definition of CCT dynamic module
Local Modification: None
// Copyright 2018 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.
interface org.chromium.chrome.browser.customtabs.dynamicmodule.IActivityDelegate;
interface org.chromium.chrome.browser.customtabs.dynamicmodule.IActivityHost;
interface org.chromium.chrome.browser.customtabs.dynamicmodule.IModuleEntryPoint;
interface org.chromium.chrome.browser.customtabs.dynamicmodule.IModuleHost;
interface org.chromium.chrome.browser.customtabs.dynamicmodule.IObjectWrapper;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment