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("//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" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 # Interfaces between two privileged services. | 71 # Interfaces between two privileged services. |
| 72 mojom("internal_interfaces") { | 72 mojom("internal_interfaces") { |
| 73 sources = [ | 73 sources = [ |
| 74 "display_compositor.mojom", | 74 "display_compositor.mojom", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 public_deps = [ | 77 public_deps = [ |
| 78 ":interfaces", | 78 ":interfaces", |
| 79 "//gpu/ipc/common:interfaces", | 79 "//gpu/ipc/common:interfaces", |
| 80 "//ui/gfx/geometry/mojo", | 80 "//ui/gfx/geometry/mojo", |
| 81 "//ui/gfx/mojo", | |
|
danakj
2016/12/21 18:40:48
LGTM
| |
| 81 ] | 82 ] |
| 82 } | 83 } |
| 83 | 84 |
| 84 mojom("test_interfaces") { | 85 mojom("test_interfaces") { |
| 85 testonly = true | 86 testonly = true |
| 86 sources = [ | 87 sources = [ |
| 87 "traits_test_service.mojom", | 88 "traits_test_service.mojom", |
| 88 ] | 89 ] |
| 89 | 90 |
| 90 public_deps = [ | 91 public_deps = [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 124 "//mojo/common:struct_traits", | 125 "//mojo/common:struct_traits", |
| 125 "//skia/public/interfaces:struct_traits", | 126 "//skia/public/interfaces:struct_traits", |
| 126 "//ui/events:events_base", | 127 "//ui/events:events_base", |
| 127 "//ui/events/mojo:struct_traits", | 128 "//ui/events/mojo:struct_traits", |
| 128 "//ui/gfx", | 129 "//ui/gfx", |
| 129 "//ui/gfx:selection_bound", | 130 "//ui/gfx:selection_bound", |
| 130 "//ui/gfx/geometry/mojo:struct_traits", | 131 "//ui/gfx/geometry/mojo:struct_traits", |
| 131 "//ui/gfx/mojo:struct_traits", | 132 "//ui/gfx/mojo:struct_traits", |
| 132 ] | 133 ] |
| 133 } | 134 } |
| OLD | NEW |