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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("lib") { | 7 source_set("lib") { |
8 sources = [ | 8 sources = [ |
| 9 "clipboard_application_delegate.cc", |
| 10 "clipboard_application_delegate.h", |
9 "clipboard_standalone_impl.cc", | 11 "clipboard_standalone_impl.cc", |
10 "clipboard_standalone_impl.h", | 12 "clipboard_standalone_impl.h", |
11 ] | 13 ] |
12 | 14 |
13 deps = [ | 15 deps = [ |
14 "//components/clipboard/public/interfaces", | 16 "//components/clipboard/public/interfaces", |
15 ] | 17 ] |
16 } | 18 } |
17 | 19 |
18 mojo_native_application("clipboard") { | 20 mojo_native_application("clipboard") { |
(...skipping 25 matching lines...) Expand all Loading... |
44 "//base", | 46 "//base", |
45 "//components/clipboard/public/interfaces", | 47 "//components/clipboard/public/interfaces", |
46 "//mojo/application", | 48 "//mojo/application", |
47 "//mojo/application:test_support", | 49 "//mojo/application:test_support", |
48 "//mojo/common", | 50 "//mojo/common", |
49 "//third_party/mojo/src/mojo/public/cpp/bindings", | 51 "//third_party/mojo/src/mojo/public/cpp/bindings", |
50 ] | 52 ] |
51 | 53 |
52 data_deps = [ ":clipboard($default_toolchain)" ] | 54 data_deps = [ ":clipboard($default_toolchain)" ] |
53 } | 55 } |
OLD | NEW |