| 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 group("common") { | 8 group("common") { | 
| 9   if (is_component_build) { | 9   if (is_component_build) { | 
| 10     public_deps = [ | 10     public_deps = [ | 
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 147     "sync_token.mojom", | 147     "sync_token.mojom", | 
| 148   ] | 148   ] | 
| 149 | 149 | 
| 150   public_deps = [ | 150   public_deps = [ | 
| 151     "//mojo/common:common_custom_types", | 151     "//mojo/common:common_custom_types", | 
| 152     "//ui/gfx/geometry/mojo", | 152     "//ui/gfx/geometry/mojo", | 
| 153   ] | 153   ] | 
| 154 | 154 | 
| 155   # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. | 155   # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. | 
| 156   use_once_callback = false | 156   use_once_callback = false | 
|  | 157 | 
|  | 158   # TODO(crbug.com/699569): Convert to use the new JS bindings. | 
|  | 159   use_new_js_bindings = false | 
| 157 } | 160 } | 
| 158 | 161 | 
| 159 mojom("test_interfaces") { | 162 mojom("test_interfaces") { | 
| 160   testonly = true | 163   testonly = true | 
| 161   sources = [ | 164   sources = [ | 
| 162     "traits_test_service.mojom", | 165     "traits_test_service.mojom", | 
| 163   ] | 166   ] | 
| 164 | 167 | 
| 165   public_deps = [ | 168   public_deps = [ | 
| 166     ":interfaces", | 169     ":interfaces", | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
| 179     "sync_token_struct_traits.h", | 182     "sync_token_struct_traits.h", | 
| 180   ] | 183   ] | 
| 181   deps = [ | 184   deps = [ | 
| 182     ":interfaces_shared_cpp_sources", | 185     ":interfaces_shared_cpp_sources", | 
| 183     ":surface_handle_type", | 186     ":surface_handle_type", | 
| 184     "//gpu/command_buffer/common", | 187     "//gpu/command_buffer/common", | 
| 185     "//gpu/ipc/common", | 188     "//gpu/ipc/common", | 
| 186     "//mojo/public/cpp/bindings:bindings", | 189     "//mojo/public/cpp/bindings:bindings", | 
| 187   ] | 190   ] | 
| 188 } | 191 } | 
| OLD | NEW | 
|---|