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

Unified Diff: blimp/common/BUILD.gn

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. 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/README.md ('k') | blimp/common/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/BUILD.gn
diff --git a/blimp/common/BUILD.gn b/blimp/common/BUILD.gn
deleted file mode 100644
index aace0f9ea3c6f70cfc7db7983ce0d4fa6b4fcd4e..0000000000000000000000000000000000000000
--- a/blimp/common/BUILD.gn
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 2015 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/util/process_version.gni")
-import("//testing/test.gni")
-
-component("common") {
- output_name = "blimp_common"
- sources = [
- "blimp_common_export.h",
- "blob_cache/blob_cache.h",
- "blob_cache/id_util.cc",
- "blob_cache/id_util.h",
- "blob_cache/in_memory_blob_cache.cc",
- "blob_cache/in_memory_blob_cache.h",
- "compositor/reference_tracker.cc",
- "compositor/reference_tracker.h",
- "create_blimp_message.cc",
- "create_blimp_message.h",
- "get_client_auth_token.cc",
- "get_client_auth_token.h",
- "logging.cc",
- "logging.h",
- "mandatory_callback.h",
- "switches.cc",
- "switches.h",
- ]
-
- defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
-
- deps = [
- "//base",
- "//cc",
- "//crypto",
- ]
-
- public_deps = [
- ":protocol_version",
- "//blimp/common/proto",
- ]
-}
-
-source_set("test_support") {
- testonly = true
-
- sources = [
- "blob_cache/mock_blob_cache.cc",
- "blob_cache/mock_blob_cache.h",
- "blob_cache/test_util.cc",
- "blob_cache/test_util.h",
- ]
-
- deps = [
- ":common",
- "//blimp/common/proto",
- "//testing/gmock",
- "//testing/gtest",
- ]
-}
-
-source_set("unit_tests") {
- testonly = true
-
- sources = [
- "blob_cache/id_util_unittest.cc",
- "blob_cache/in_memory_blob_cache_unittest.cc",
- "compositor/reference_tracker_unittest.cc",
- "create_blimp_message_unittest.cc",
- "logging_unittest.cc",
- "mandatory_callback_unittest.cc",
- ]
-
- deps = [
- ":common",
- ":test_support",
- "//base",
- "//base/test:test_support",
- "//blimp/common/proto",
- "//crypto",
- "//testing/gmock",
- "//testing/gtest",
- ]
-}
-
-process_version("protocol_version") {
- sources = [
- "//chrome/VERSION",
- ]
- template_file = "protocol_version.h.version"
- output = "$target_gen_dir/protocol_version.h"
-}
« no previous file with comments | « blimp/README.md ('k') | blimp/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698