| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//cc/cc.gni") | 6 import("//cc/cc.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 cc_component("ipc") { | 9 cc_component("ipc") { |
| 10 output_name = "cc_ipc" | 10 output_name = "cc_ipc" |
| 11 | 11 |
| 12 defines = [ "CC_IPC_IMPLEMENTATION" ] | 12 defines = [ "CC_IPC_IMPLEMENTATION" ] |
| 13 | 13 |
| 14 sources = [ | 14 sources = [ |
| 15 "cc_ipc_export.h", | 15 "cc_ipc_export.h", |
| 16 "cc_param_traits.cc", | 16 "cc_param_traits.cc", |
| 17 "cc_param_traits.h", | 17 "cc_param_traits.h", |
| 18 "cc_param_traits_macros.h", | 18 "cc_param_traits_macros.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 public_deps = [ | 21 public_deps = [ |
| 22 "//cc", | 22 "//cc", |
| 23 "//cc/surfaces", | 23 "//cc/surfaces", |
| 24 "//net:traffic_annotation", |
| 24 "//skia", | 25 "//skia", |
| 25 ] | 26 ] |
| 26 | 27 |
| 27 deps = [ | 28 deps = [ |
| 28 "//base", | 29 "//base", |
| 29 "//gpu/ipc/common", | 30 "//gpu/ipc/common", |
| 30 "//ipc", | 31 "//ipc", |
| 31 "//ui/gfx", | 32 "//ui/gfx", |
| 32 "//ui/gfx/ipc", | 33 "//ui/gfx/ipc", |
| 33 "//ui/gfx/ipc/color", | 34 "//ui/gfx/ipc/color", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 mojom("test_interfaces") { | 79 mojom("test_interfaces") { |
| 79 testonly = true | 80 testonly = true |
| 80 sources = [ | 81 sources = [ |
| 81 "traits_test_service.mojom", | 82 "traits_test_service.mojom", |
| 82 ] | 83 ] |
| 83 | 84 |
| 84 public_deps = [ | 85 public_deps = [ |
| 85 ":interfaces", | 86 ":interfaces", |
| 86 ] | 87 ] |
| 87 } | 88 } |
| OLD | NEW |