| Index: mojo/public/dart/BUILD.gn
|
| diff --git a/components/infobars/test/BUILD.gn b/mojo/public/dart/BUILD.gn
|
| similarity index 55%
|
| copy from components/infobars/test/BUILD.gn
|
| copy to mojo/public/dart/BUILD.gn
|
| index 606cecd8fbb778ef85a9423d5377e417466157a3..83c5a25284717efaeec04617b22446b2b606374a 100644
|
| --- a/components/infobars/test/BUILD.gn
|
| +++ b/mojo/public/dart/BUILD.gn
|
| @@ -2,13 +2,19 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -static_library("test_support") {
|
| - sources = [
|
| - "infobar_test.cc",
|
| - ]
|
| -
|
| +group("dart") {
|
| deps = [
|
| - "//base",
|
| - "//skia",
|
| + ":bindings",
|
| ]
|
| }
|
| +
|
| +
|
| +copy("bindings") {
|
| + sources = [
|
| + "bindings.dart",
|
| + "src/codec.dart",
|
| + ]
|
| + outputs = [
|
| + "{{source_gen_dir}}/{{source_file_part}}"
|
| + ]
|
| +}
|
|
|