Chromium Code Reviews| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 component("ipc") { | 8 component("ipc") { |
| 9 output_name = "cc_ipc" | 9 output_name = "cc_ipc" |
| 10 | 10 |
| 11 defines = [ "CC_IPC_IMPLEMENTATION" ] | 11 defines = [ "CC_IPC_IMPLEMENTATION" ] |
| 12 | 12 |
| 13 sources = [ | 13 sources = [ |
| 14 "cc_ipc_export.h", | 14 "cc_ipc_export.h", |
| 15 "cc_param_traits.cc", | 15 "cc_param_traits.cc", |
| 16 "cc_param_traits.h", | 16 "cc_param_traits.h", |
| 17 "cc_param_traits_macros.h", | 17 "cc_param_traits_macros.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 public_deps = [ | 20 public_deps = [ |
| 21 ":interfaces", | |
|
danakj
2016/07/06 18:26:37
what is this? can you explain? it's not a path..
Fady Samuel
2016/07/06 18:40:05
This is an unnecessary change. Removed.
| |
| 21 "//cc", | 22 "//cc", |
| 22 "//cc/surfaces", | 23 "//cc/surfaces", |
| 23 "//skia", | 24 "//skia", |
| 24 ] | 25 ] |
| 25 | 26 |
| 26 deps = [ | 27 deps = [ |
| 27 "//base", | 28 "//base", |
| 28 "//gpu/ipc/common", | 29 "//gpu/ipc/common", |
| 29 "//ipc", | 30 "//ipc", |
| 30 "//ui/events/ipc", | 31 "//ui/events/ipc", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 73 testonly = true | 74 testonly = true |
| 74 sources = [ | 75 sources = [ |
| 75 "traits_test_service.mojom", | 76 "traits_test_service.mojom", |
| 76 ] | 77 ] |
| 77 | 78 |
| 78 public_deps = [ | 79 public_deps = [ |
| 79 ":interfaces", | 80 ":interfaces", |
| 80 ":interfaces_surfaceid_only", | 81 ":interfaces_surfaceid_only", |
| 81 ] | 82 ] |
| 82 } | 83 } |
| OLD | NEW |