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

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

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 | « components/bitmap_uploader/bitmap_uploader.cc ('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
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 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 = [
16 "//base", 16 "//base",
17 "//components/clipboard/public/interfaces", 17 "//components/clipboard/public/interfaces",
18 "//mojo/application/public/cpp",
19 "//mojo/public/cpp/bindings", 18 "//mojo/public/cpp/bindings",
20 "//mojo/public/cpp/bindings:callback", 19 "//mojo/public/cpp/bindings:callback",
21 "//mojo/services/tracing/public/cpp", 20 "//mojo/services/tracing/public/cpp",
21 "//mojo/shell/public/cpp",
22 ] 22 ]
23 } 23 }
24 24
25 mojo_native_application("clipboard") { 25 mojo_native_application("clipboard") {
26 sources = [ 26 sources = [
27 "main.cc", 27 "main.cc",
28 ] 28 ]
29 29
30 deps = [ 30 deps = [
31 ":lib", 31 ":lib",
32 "//base", 32 "//base",
33 "//mojo/application/public/cpp",
34 "//mojo/public/cpp/bindings:callback", 33 "//mojo/public/cpp/bindings:callback",
34 "//mojo/shell/public/cpp",
35 ] 35 ]
36 } 36 }
37 37
38 mojo_native_application("apptests") { 38 mojo_native_application("apptests") {
39 output_name = "clipboard_apptests" 39 output_name = "clipboard_apptests"
40 40
41 testonly = true 41 testonly = true
42 42
43 sources = [ 43 sources = [
44 "clipboard_apptest.cc", 44 "clipboard_apptest.cc",
45 ] 45 ]
46 46
47 deps = [ 47 deps = [
48 "//base", 48 "//base",
49 "//components/clipboard/public/interfaces", 49 "//components/clipboard/public/interfaces",
50 "//mojo/application/public/cpp",
51 "//mojo/application/public/cpp:test_support",
52 "//mojo/common", 50 "//mojo/common",
51 "//mojo/shell/public/cpp",
52 "//mojo/shell/public/cpp:test_support",
53 ] 53 ]
54 54
55 data_deps = [ 55 data_deps = [
56 ":clipboard", 56 ":clipboard",
57 ] 57 ]
58 } 58 }
OLDNEW
« no previous file with comments | « components/bitmap_uploader/bitmap_uploader.cc ('k') | components/clipboard/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698