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("//mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("lib") { | 7 source_set("lib") { |
8 sources = [ | 8 sources = [ |
9 "clipboard_application_delegate.cc", | 9 "clipboard_application_delegate.cc", |
10 "clipboard_application_delegate.h", | 10 "clipboard_application_delegate.h", |
11 "clipboard_standalone_impl.cc", | 11 "clipboard_standalone_impl.cc", |
12 "clipboard_standalone_impl.h", | 12 "clipboard_standalone_impl.h", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
(...skipping 26 matching lines...) Expand all Loading... |
42 ] | 42 ] |
43 | 43 |
44 deps = [ | 44 deps = [ |
45 "//base", | 45 "//base", |
46 "//components/clipboard/public/interfaces", | 46 "//components/clipboard/public/interfaces", |
47 "//mojo/application/public/cpp:test_support", | 47 "//mojo/application/public/cpp:test_support", |
48 ] | 48 ] |
49 | 49 |
50 data_deps = [ ":clipboard" ] | 50 data_deps = [ ":clipboard" ] |
51 } | 51 } |
OLD | NEW |