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

Side by Side Diff: base/BUILD.gn

Issue 1387963006: Adding error handlers to setup.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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("//build/config/compiler/compiler.gni") 5 import("//build/config/compiler/compiler.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 1172 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 "/SUBSYSTEM:WINDOWS", 1183 "/SUBSYSTEM:WINDOWS",
1184 ] 1184 ]
1185 libs = [ 1185 libs = [
1186 "cfgmgr32.lib", 1186 "cfgmgr32.lib",
1187 "shell32.lib", 1187 "shell32.lib",
1188 ] 1188 ]
1189 deps = [ 1189 deps = [
1190 "//build/config/sanitizers:deps", 1190 "//build/config/sanitizers:deps",
1191 ] 1191 ]
1192 } 1192 }
1193
1194 source_set("process_startup_helper_win") {
1195 sources = [
1196 "win/process_startup_helper.cc",
1197 "win/process_startup_helper.h",
1198 ]
1199 deps = [
1200 "//base",
1201 "//base:base_static",
1202 ]
1203 }
1193 } 1204 }
1194 1205
1195 # TODO(GYP): Delete this after we've converted everything to GN. 1206 # TODO(GYP): Delete this after we've converted everything to GN.
1196 # The _run targets exist only for compatibility w/ GYP. 1207 # The _run targets exist only for compatibility w/ GYP.
1197 group("base_unittests_run") { 1208 group("base_unittests_run") {
1198 testonly = true 1209 testonly = true
1199 deps = [ 1210 deps = [
1200 ":base_unittests", 1211 ":base_unittests",
1201 ] 1212 ]
1202 } 1213 }
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1680 1691
1681 # GYP: //base.gyp:base_java_unittest_support 1692 # GYP: //base.gyp:base_java_unittest_support
1682 android_library("base_java_unittest_support") { 1693 android_library("base_java_unittest_support") {
1683 deps = [ 1694 deps = [
1684 ":base_java", 1695 ":base_java",
1685 ] 1696 ]
1686 java_files = 1697 java_files =
1687 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1698 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1688 } 1699 }
1689 } 1700 }
OLDNEW
« no previous file with comments | « ash/shell/content/shell_with_content_main.cc ('k') | base/base.gyp » ('j') | base/base.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698