Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("blimp_common") { | 7 component("blimp_common") { |
| 8 sources = [ | 8 sources = [ |
| 9 "blimp_common_export.h", | 9 "blimp_common_export.h", |
| 10 "compositor/blimp_image_serialization_processor.cc", | 10 "compositor/blimp_image_serialization_processor.cc", |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//blimp/common/proto", | 27 "//blimp/common/proto", |
| 28 "//cc", | 28 "//cc", |
| 29 "//skia", | 29 "//skia", |
| 30 "//third_party/libwebp", | 30 "//third_party/libwebp", |
| 31 "//ui/gfx/geometry", | 31 "//ui/gfx/geometry", |
| 32 "//ui/gl", | 32 "//ui/gl", |
| 33 ] | 33 ] |
| 34 | |
| 35 public_deps = [ | |
| 36 "//ui/base/ime:text_input_types", | |
|
sky
2016/03/24 22:10:58
Are any of the files in this target actually inclu
shaktisahu
2016/03/24 23:13:33
Acknowledged. I have removed these and added deps
| |
| 37 ] | |
| 34 } | 38 } |
| 35 | 39 |
| 36 source_set("unit_tests") { | 40 source_set("unit_tests") { |
| 37 testonly = true | 41 testonly = true |
| 38 | 42 |
| 39 sources = [ | 43 sources = [ |
| 40 "create_blimp_message_unittest.cc", | 44 "create_blimp_message_unittest.cc", |
| 41 "logging_unittest.cc", | 45 "logging_unittest.cc", |
| 42 ] | 46 ] |
| 43 | 47 |
| 44 deps = [ | 48 deps = [ |
| 45 ":blimp_common", | 49 ":blimp_common", |
| 46 "//blimp/common/proto", | 50 "//blimp/common/proto", |
| 47 "//testing/gmock", | 51 "//testing/gmock", |
| 48 "//testing/gtest", | 52 "//testing/gtest", |
| 49 ] | 53 ] |
| 50 } | 54 } |
| OLD | NEW |