| 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"
|
| -}
|
|
|