| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |