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

Side by Side Diff: chrome/app_installer/BUILD.gn

Issue 1132873009: Remove app_installer code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « build/gn_migration.gypi ('k') | chrome/app_installer/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 2015 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("//testing/test.gni")
6
7 assert(is_win)
8
9 executable("app_installer") {
10 sources = [
11 "win/app_installer_main.cc",
12 ]
13
14 configs -= [ "//build/config/win:console" ]
15 configs += [ "//build/config/win:windowed" ]
16
17 deps = [
18 ":util",
19 "//base",
20 "//mojo/environment:chromium",
21 ]
22
23 # TODO(GYP) manifest.
24 }
25
26 source_set("util") {
27 sources = [
28 "win/app_installer_util.cc",
29 "win/app_installer_util.h",
30 ]
31
32 deps = [
33 "//base",
34 "//chrome/common",
35 "//chrome/common:constants",
36 "//chrome/installer/launcher_support",
37 "//chrome/installer/util",
38 "//chrome/installer/util:strings",
39 "//content/public/common",
40 "//net",
41 "//third_party/omaha:extractor",
42 ]
43 }
44
45 test("app_installer_unittests") {
46 sources = [
47 "win/app_installer_util_unittest.cc",
48 ]
49
50 deps = [
51 ":util",
52 "//base",
53 "//base/test:run_all_unittests",
54 "//mojo/environment:chromium",
55 "//net:test_support",
56 "//testing/gtest",
57 ]
58
59 # TODO(GYP) manifest
60 }
OLDNEW
« no previous file with comments | « build/gn_migration.gypi ('k') | chrome/app_installer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698