| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") # For generate_jni(). | 9 import("//build/config/android/rules.gni") # For generate_jni(). |
| 10 } | 10 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 ":vr", | 69 ":vr", |
| 70 "//base", | 70 "//base", |
| 71 "//mojo/public/cpp/bindings", | 71 "//mojo/public/cpp/bindings", |
| 72 ] | 72 ] |
| 73 } | 73 } |
| 74 | 74 |
| 75 mojom("mojo_bindings") { | 75 mojom("mojo_bindings") { |
| 76 sources = [ | 76 sources = [ |
| 77 "vr_service.mojom", | 77 "vr_service.mojom", |
| 78 ] | 78 ] |
| 79 | |
| 80 use_new_wrapper_types = false | |
| 81 } | 79 } |
| OLD | NEW |