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

Side by Side Diff: services/asset_bundle/BUILD.gn

Issue 1388413005: Move //mojo/services/X/public/... to //mojo/services/X/... (part 1). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 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 | « services/android/java_handler.h ('k') | services/asset_bundle/asset_bundle_apptest.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 "asset_bundle_impl.cc", 9 "asset_bundle_impl.cc",
10 "asset_bundle_impl.h", 10 "asset_bundle_impl.h",
11 "asset_unpacker_impl.cc", 11 "asset_unpacker_impl.cc",
12 "asset_unpacker_impl.h", 12 "asset_unpacker_impl.h",
13 "asset_unpacker_job.cc", 13 "asset_unpacker_job.cc",
14 "asset_unpacker_job.h", 14 "asset_unpacker_job.h",
15 ] 15 ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//mojo/data_pipe_utils", 19 "//mojo/data_pipe_utils",
20 "//mojo/public/cpp/bindings:callback", 20 "//mojo/public/cpp/bindings:callback",
21 "//mojo/public/cpp/system", 21 "//mojo/public/cpp/system",
22 "//mojo/services/asset_bundle/public/interfaces", 22 "//mojo/services/asset_bundle/interfaces",
23 "//third_party/zlib:zip", 23 "//third_party/zlib:zip",
24 ] 24 ]
25 } 25 }
26 26
27 mojo_native_application("asset_bundle") { 27 mojo_native_application("asset_bundle") {
28 sources = [ 28 sources = [
29 "main.cc", 29 "main.cc",
30 ] 30 ]
31 31
32 deps = [ 32 deps = [
33 "//base", 33 "//base",
34 "//mojo/application", 34 "//mojo/application",
35 "//mojo/public/cpp/application", 35 "//mojo/public/cpp/application",
36 "//mojo/public/cpp/bindings:callback", 36 "//mojo/public/cpp/bindings:callback",
37 "//mojo/public/cpp/system", 37 "//mojo/public/cpp/system",
38 "//mojo/services/asset_bundle/public/interfaces", 38 "//mojo/services/asset_bundle/interfaces",
39 ":lib", 39 ":lib",
40 ] 40 ]
41 } 41 }
42 42
43 mojo_native_application("apptests") { 43 mojo_native_application("apptests") {
44 output_name = "asset_bundle_apptests" 44 output_name = "asset_bundle_apptests"
45 45
46 testonly = true 46 testonly = true
47 47
48 sources = [ 48 sources = [
49 "asset_bundle_apptest.cc", 49 "asset_bundle_apptest.cc",
50 ] 50 ]
51 51
52 deps = [ 52 deps = [
53 "//base", 53 "//base",
54 "//mojo/application", 54 "//mojo/application",
55 "//mojo/application:test_support", 55 "//mojo/application:test_support",
56 "//mojo/data_pipe_utils", 56 "//mojo/data_pipe_utils",
57 "//mojo/public/cpp/bindings", 57 "//mojo/public/cpp/bindings",
58 "//mojo/services/asset_bundle/public/interfaces", 58 "//mojo/services/asset_bundle/interfaces",
59 "//third_party/zlib:zip", 59 "//third_party/zlib:zip",
60 ] 60 ]
61 61
62 data_deps = [ ":asset_bundle($default_toolchain)" ] 62 data_deps = [ ":asset_bundle($default_toolchain)" ]
63 } 63 }
OLDNEW
« no previous file with comments | « services/android/java_handler.h ('k') | services/asset_bundle/asset_bundle_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698