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

Side by Side Diff: ios/chrome/app/BUILD.gn

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 | « ios/chrome/BUILD.gn ('k') | ios/chrome/app/application_delegate/BUILD.gn » ('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 source_set("app") { 5 source_set("app") {
6 sources = [ 6 sources = [
7 "application_delegate/memory_warning_helper.h",
8 "application_delegate/memory_warning_helper.mm",
9 "deferred_initialization_runner.h", 7 "deferred_initialization_runner.h",
10 "deferred_initialization_runner.mm", 8 "deferred_initialization_runner.mm",
11 "safe_mode_crashing_modules_config.h", 9 "safe_mode_crashing_modules_config.h",
12 "safe_mode_crashing_modules_config.mm", 10 "safe_mode_crashing_modules_config.mm",
13 "safe_mode_util.cc", 11 "safe_mode_util.cc",
14 "safe_mode_util.h", 12 "safe_mode_util.h",
15 ] 13 ]
16 14
15 # TODO(crbug.com/658242): Remove this dependency once all of downstream code
16 # dependencies have been fixed to not require it.
17 public_deps = [
18 "//ios/chrome/app/application_delegate",
19 ]
20
17 deps = [ 21 deps = [
18 "//base", 22 "//base",
19 "//ios/chrome/browser",
20 ] 23 ]
21 24
22 libs = [ 25 libs = [ "Foundation.framework" ]
23 "Foundation.framework", 26 }
24 "UIKit.framework", 27
28 source_set("unit_tests") {
29 testonly = true
30 sources = [
31 "deferred_initialization_runner_unittest.mm",
32 "safe_mode_util_unittest.cc",
33 ]
34 deps = [
35 ":app",
36 "//base",
37 "//base/test:test_support",
38 "//testing/gtest",
25 ] 39 ]
26 } 40 }
OLDNEW
« no previous file with comments | « ios/chrome/BUILD.gn ('k') | ios/chrome/app/application_delegate/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698