| 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/paint", |
| 23 "//cc/surfaces", | 24 "//cc/surfaces", |
| 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/events/ipc", | 32 "//ui/events/ipc", |
| 32 "//ui/gfx", | 33 "//ui/gfx", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 mojom("test_interfaces") { | 78 mojom("test_interfaces") { |
| 78 testonly = true | 79 testonly = true |
| 79 sources = [ | 80 sources = [ |
| 80 "traits_test_service.mojom", | 81 "traits_test_service.mojom", |
| 81 ] | 82 ] |
| 82 | 83 |
| 83 public_deps = [ | 84 public_deps = [ |
| 84 ":interfaces", | 85 ":interfaces", |
| 85 ] | 86 ] |
| 86 } | 87 } |
| OLD | NEW |