Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(754)

Side by Side Diff: components/clipboard/BUILD.gn

Issue 1685953002: mojo: Now that mandoline/ is deleted, also remove mojo:clipboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | components/clipboard/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//mojo/public/mojo_application.gni")
6
7 source_set("lib") {
8 sources = [
9 "clipboard_application_delegate.cc",
10 "clipboard_application_delegate.h",
11 "clipboard_standalone_impl.cc",
12 "clipboard_standalone_impl.h",
13 ]
14
15 deps = [
16 "//base",
17 "//components/clipboard/public/interfaces",
18 "//mojo/public/cpp/bindings",
19 "//mojo/public/cpp/bindings:callback",
20 "//mojo/services/tracing/public/cpp",
21 "//mojo/shell/public/cpp",
22 ]
23 }
24
25 mojo_native_application("clipboard") {
26 sources = [
27 "main.cc",
28 ]
29
30 deps = [
31 ":lib",
32 "//base",
33 "//mojo/public/cpp/bindings:callback",
34 "//mojo/shell/public/cpp",
35 ]
36 }
37
38 mojo_native_application("apptests") {
39 output_name = "clipboard_apptests"
40
41 testonly = true
42
43 sources = [
44 "clipboard_apptest.cc",
45 ]
46
47 deps = [
48 "//base",
49 "//components/clipboard/public/interfaces",
50 "//mojo/common",
51 "//mojo/shell/public/cpp",
52 "//mojo/shell/public/cpp:test_support",
53 ]
54
55 data_deps = [
56 ":clipboard",
57 ]
58 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | components/clipboard/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698