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

Side by Side Diff: mojo/application/BUILD.gn

Issue 1142323003: Remove duplicate application cpp files in mojo/application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 | « media/test/BUILD.gn ('k') | mojo/application/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 # GYP version: mojo/mojo_base.gyp:mojo_application_chromium
6 source_set("application") {
7 sources = [
8 "app_lifetime_helper.cc",
9 "app_lifetime_helper.h",
10 "application_runner_chromium.cc",
11 "application_runner_chromium.h",
12 ]
13
14 public_deps = [
15 "//mojo/application/public/cpp",
16 ]
17 deps = [
18 "//base",
19 "//mojo/common",
20 "//mojo/environment:chromium",
21 ]
22 }
23
24 source_set("content_handler") {
25 sources = [
26 "content_handler_factory.cc",
27 "content_handler_factory.h",
28 ]
29 deps = [
30 ":application",
31 "//base",
32 "//mojo/application/public/interfaces",
33 "//mojo/common",
34 "//mojo/environment:chromium",
35 "//mojo/services/network/public/interfaces",
36 ]
37 }
38
39 source_set("test_support") {
40 testonly = true
41 sources = [
42 "application_test_base_chromium.cc",
43 "application_test_base_chromium.h",
44 "application_test_main_chromium.cc",
45 ]
46
47 deps = [
48 "//base",
49 "//base/test:test_support",
50 "//mojo/application/public/cpp",
51 "//third_party/mojo/src/mojo/public/cpp/bindings",
52 "//third_party/mojo/src/mojo/public/cpp/environment",
53 "//third_party/mojo/src/mojo/public/cpp/system",
54 "//testing/gtest",
55 ]
56
57 data_deps = []
58 if (is_android) {
59 data_deps += [ "//mojo/android" ]
60 }
61 if (!is_component_build) {
62 data_deps += [ "//mojo/runner" ]
63 }
64 }
OLDNEW
« no previous file with comments | « media/test/BUILD.gn ('k') | mojo/application/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698