| 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 import("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("crash") { | 8 source_set("crash") { |
| 9 sources = [ | 9 sources = [ |
| 10 "app_state_tracker.cc", | 10 "app_state_tracker.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "linux/minidump_writer.h", | 28 "linux/minidump_writer.h", |
| 29 "linux/synchronized_minidump_manager.cc", | 29 "linux/synchronized_minidump_manager.cc", |
| 30 "linux/synchronized_minidump_manager.h", | 30 "linux/synchronized_minidump_manager.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//breakpad:client", | 35 "//breakpad:client", |
| 36 "//chromecast/base", | 36 "//chromecast/base", |
| 37 "//chromecast/base:cast_version", | 37 "//chromecast/base:cast_version", |
| 38 "//components/crash/core/common", |
| 38 "//components/metrics", | 39 "//components/metrics", |
| 39 "//components/prefs", | 40 "//components/prefs", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 if (chromecast_branding == "public") { | 43 if (chromecast_branding == "public") { |
| 43 deps += [ "//chromecast/base:cast_sys_info" ] | 44 deps += [ "//chromecast/base:cast_sys_info" ] |
| 44 } else { | 45 } else { |
| 45 deps += [ "//chromecast/base:cast_sys_info_shlib" ] | 46 deps += [ "//chromecast/base:cast_sys_info_shlib" ] |
| 46 } | 47 } |
| 47 } | 48 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "//breakpad:client", | 99 "//breakpad:client", |
| 99 "//chromecast/base:cast_sys_info", | 100 "//chromecast/base:cast_sys_info", |
| 100 "//chromecast/base:test_support", | 101 "//chromecast/base:test_support", |
| 101 "//components/metrics", | 102 "//components/metrics", |
| 102 "//components/prefs:test_support", | 103 "//components/prefs:test_support", |
| 103 "//testing/gmock", | 104 "//testing/gmock", |
| 104 "//testing/gtest", | 105 "//testing/gtest", |
| 105 ] | 106 ] |
| 106 } | 107 } |
| 107 } | 108 } |
| OLD | NEW |