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

Unified Diff: blimp/client/core/BUILD.gn

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/client/app/linux/blimp_main.cc ('k') | blimp/client/core/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/BUILD.gn
diff --git a/blimp/client/core/BUILD.gn b/blimp/client/core/BUILD.gn
deleted file mode 100644
index 32c4566ecb3c558f336681da94ea16461bc1e441..0000000000000000000000000000000000000000
--- a/blimp/client/core/BUILD.gn
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 2016 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.
-
-if (is_android) {
- import("//build/config/android/config.gni")
- import("//build/config/android/rules.gni")
-}
-
-import("//blimp/client/core/config.gni")
-import("//testing/test.gni")
-
-# This target is here to let //chrome depend on //blimp/client/public
-# and automatically get the correct implementation of //blimp/client/core
-# depending on whether enable_blimp_client is set or not.
-group("core_shim") {
- visibility = [ "//blimp/client/public" ]
-
- if (enable_blimp_client) {
- deps = [
- ":core",
- ]
- } else {
- deps = [
- ":dummy_core",
- ]
- }
-}
-
-group("core") {
- visibility = [
- ":core_shim",
- "//blimp/client/app:*", # TODO(nyquist): Remove when enable_blimp_client is gone.
- "//blimp/client/test",
- "//blimp/test/*",
- ]
-
- deps = [
- "//blimp/client/core/compositor",
- "//blimp/client/core/contents",
- "//blimp/client/core/context",
- "//blimp/client/core/feedback",
- "//blimp/client/core/geolocation",
- "//blimp/client/core/render_widget",
- "//blimp/client/core/resources",
- "//blimp/client/core/session",
- "//blimp/client/core/settings",
- "//blimp/client/core/switches",
- ]
-}
-
-group("dummy_core") {
- visibility = [ ":*" ]
-
- deps = [
- "//blimp/client/core/context:dummy",
- "//blimp/client/core/resources:dummy",
- ]
-}
-
-group("unit_tests") {
- testonly = true
-
- deps = [
- "//blimp/client/core/compositor:unit_tests",
- "//blimp/client/core/contents:unit_tests",
- "//blimp/client/core/context:unit_tests",
- "//blimp/client/core/feedback:unit_tests",
- "//blimp/client/core/geolocation:unit_tests",
- "//blimp/client/core/integration_tests",
- "//blimp/client/core/render_widget:unit_tests",
- "//blimp/client/core/session:unit_tests",
- "//blimp/client/core/settings:unit_tests",
- ]
-}
-
-if (is_android) {
- # This target is here to let //chrome depend on
- # //blimp/client/public:public_java and automatically get the correct
- # implementation of //blimp/client/core depending on whether
- # enable_blimp_client is set or not.
- java_group("core_shim_java") {
- visibility = [ "//blimp/client/public/*" ]
-
- if (enable_blimp_client) {
- deps = [
- ":core_java",
- ]
- } else {
- deps = [
- ":dummy_core_java",
- ]
- }
- }
-
- java_group("core_java") {
- visibility = [
- ":core_shim_java",
- "//blimp/client:blimp_unittests_java_deps",
- "//blimp/client/app:*", # TODO(nyquist): Remove when enable_blimp_client is gone.
- ]
-
- deps = [
- "//blimp/client/core/contents:contents_java",
- "//blimp/client/core/context:context_java",
- "//blimp/client/core/feedback:feedback_java",
- "//blimp/client/core/settings:settings_java",
- "//blimp/client/core/switches:switches_java",
- "//device/geolocation:geolocation_java",
- ]
- }
-
- java_group("dummy_core_java") {
- visibility = [ ":*" ]
-
- deps = [
- "//blimp/client/core/context:dummy_context_java",
- ]
- }
-}
« no previous file with comments | « blimp/client/app/linux/blimp_main.cc ('k') | blimp/client/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698