| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 mojom("test_interfaces") { | 78 mojom("test_interfaces") { |
| 79 testonly = true | 79 testonly = true |
| 80 sources = [ | 80 sources = [ |
| 81 "traits_test_service.mojom", | 81 "traits_test_service.mojom", |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 public_deps = [ | 84 public_deps = [ |
| 85 ":interfaces", | 85 ":interfaces", |
| 86 ] | 86 ] |
| 87 | |
| 88 use_once_callback = true | |
| 89 } | 87 } |
| OLD | NEW |