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

Unified Diff: chrome/app_installer/BUILD.gn

Issue 1101323003: Work on Windows GN tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | chrome/app_installer/app_installer.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app_installer/BUILD.gn
diff --git a/chrome/app_installer/BUILD.gn b/chrome/app_installer/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..edcca139f02a32fdb97ca26aeac5d4e543810f6e
--- /dev/null
+++ b/chrome/app_installer/BUILD.gn
@@ -0,0 +1,58 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//testing/test.gni")
+
+assert(is_win)
+
+executable("app_installer") {
+ sources = [
+ "/win/app_installer_main.cc"
+ ]
+
+ configs -= [ "//build/config/win:console" ]
+ configs += [ "//build/config/win:windowed" ]
+
+ deps = [
+ ":util",
+ "//base",
+ ]
+
+ # TODO(GYP) manifest.
+}
+
+source_set("util") {
+ sources = [
+ "win/app_installer_util.cc",
+ "win/app_installer_util.h",
+ ]
+
+ deps = [
+ "//base",
+ "//chrome/common",
+ "//chrome/common:constants",
+ "//chrome/installer/launcher_support",
+ "//chrome/installer/util",
+ "//chrome/installer/util:strings",
+ "//content/public/common",
+ "//net",
+ "//third_party/omaha:extractor",
+ ]
+}
+
+test("app_installer_unittests") {
+ sources = [
+ "win/app_installer_util_unittest.cc",
+ ]
+
+ deps = [
+ ":util",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//net:test_support",
+ "//testing/gtest",
+ ]
+
+ # TODO(GYP) manifest
+}
« no previous file with comments | « BUILD.gn ('k') | chrome/app_installer/app_installer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698