| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 mojo_native_application("clipboard") { | 7 mojo_native_application("clipboard") { |
| 8 sources = [ | 8 sources = [ |
| 9 "clipboard_standalone_impl.cc", | 9 "clipboard_standalone_impl.cc", |
| 10 "clipboard_standalone_impl.h", | 10 "clipboard_standalone_impl.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 "//base", | 35 "//base", |
| 36 "//mojo/application", | 36 "//mojo/application", |
| 37 "//mojo/application:test_support", | 37 "//mojo/application:test_support", |
| 38 "//mojo/common", | 38 "//mojo/common", |
| 39 "//mojo/public/cpp/bindings", | 39 "//mojo/public/cpp/bindings", |
| 40 "//mojo/services/clipboard/public/interfaces", | 40 "//mojo/services/clipboard/public/interfaces", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 datadeps = [ | 43 data_deps = [ ":clipboard" ] |
| 44 ":clipboard", | |
| 45 ] | |
| 46 } | 44 } |
| OLD | NEW |