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

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

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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", 18 "//mojo/application/public/cpp",
19 "//third_party/mojo/src/mojo/public/cpp/bindings", 19 "//mojo/public/cpp/bindings",
20 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 20 "//mojo/public/cpp/bindings:callback",
21 ] 21 ]
22 } 22 }
23 23
24 mojo_native_application("clipboard") { 24 mojo_native_application("clipboard") {
25 sources = [ 25 sources = [
26 "main.cc", 26 "main.cc",
27 ] 27 ]
28 28
29 deps = [ 29 deps = [
30 ":lib", 30 ":lib",
31 "//base", 31 "//base",
32 "//mojo/application/public/cpp", 32 "//mojo/application/public/cpp",
33 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 33 "//mojo/public/cpp/bindings:callback",
34 ] 34 ]
35 } 35 }
36 36
37 mojo_native_application("apptests") { 37 mojo_native_application("apptests") {
38 output_name = "clipboard_apptests" 38 output_name = "clipboard_apptests"
39 39
40 testonly = true 40 testonly = true
41 41
42 sources = [ 42 sources = [
43 "clipboard_apptest.cc", 43 "clipboard_apptest.cc",
44 ] 44 ]
45 45
46 deps = [ 46 deps = [
47 "//base", 47 "//base",
48 "//components/clipboard/public/interfaces", 48 "//components/clipboard/public/interfaces",
49 "//mojo/application/public/cpp", 49 "//mojo/application/public/cpp",
50 "//mojo/application/public/cpp:test_support", 50 "//mojo/application/public/cpp:test_support",
51 "//mojo/common", 51 "//mojo/common",
52 ] 52 ]
53 53
54 data_deps = [ 54 data_deps = [
55 ":clipboard", 55 ":clipboard",
56 ] 56 ]
57 } 57 }
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