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

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

Issue 2557613004: [ios] Adds test hooks to enable/disable functionality while testing. (Closed)
Patch Set: Created 4 years 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 | « no previous file | ios/chrome/app/tests_fake_hook.mm » ('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 "deferred_initialization_runner.h", 7 "deferred_initialization_runner.h",
8 "deferred_initialization_runner.mm", 8 "deferred_initialization_runner.mm",
9 "safe_mode_crashing_modules_config.h", 9 "safe_mode_crashing_modules_config.h",
10 "safe_mode_crashing_modules_config.mm", 10 "safe_mode_crashing_modules_config.mm",
(...skipping 14 matching lines...) Expand all
25 "deferred_initialization_runner_unittest.mm", 25 "deferred_initialization_runner_unittest.mm",
26 "safe_mode_util_unittest.cc", 26 "safe_mode_util_unittest.cc",
27 ] 27 ]
28 deps = [ 28 deps = [
29 ":app", 29 ":app",
30 "//base", 30 "//base",
31 "//base/test:test_support", 31 "//base/test:test_support",
32 "//testing/gtest", 32 "//testing/gtest",
33 ] 33 ]
34 } 34 }
35
36 source_set("tests_hook") {
37 # This target is intentionally not test-only, as the main app depends on it.
38 sources = [
39 "tests_hook.h",
40 ]
41 }
42
43 source_set("tests_fake_hook") {
44 # This target is intentionally not test-only, as the main app depends on it.
45 sources = [
46 "tests_fake_hook.mm",
47 ]
48 deps = [
49 ":tests_hook",
50 ]
51 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/app/tests_fake_hook.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698