| 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("//build/util/process_version.gni") | 5 import("//build/util/process_version.gni") |
| 6 import("//chromecast/chromecast.gni") | 6 import("//chromecast/chromecast.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 20 matching lines...) Expand all Loading... |
| 31 sources = [ | 31 sources = [ |
| 32 "alarm_manager.cc", | 32 "alarm_manager.cc", |
| 33 "alarm_manager.h", | 33 "alarm_manager.h", |
| 34 "android/dumpstate_writer.cc", | 34 "android/dumpstate_writer.cc", |
| 35 "android/dumpstate_writer.h", | 35 "android/dumpstate_writer.h", |
| 36 "android/system_time_change_notifier_android.cc", | 36 "android/system_time_change_notifier_android.cc", |
| 37 "android/system_time_change_notifier_android.h", | 37 "android/system_time_change_notifier_android.h", |
| 38 "bind_to_task_runner.h", | 38 "bind_to_task_runner.h", |
| 39 "cast_constants.cc", | 39 "cast_constants.cc", |
| 40 "cast_constants.h", | 40 "cast_constants.h", |
| 41 "cast_features.cc", | |
| 42 "cast_features.h", | |
| 43 "cast_paths.cc", | 41 "cast_paths.cc", |
| 44 "cast_paths.h", | 42 "cast_paths.h", |
| 45 "cast_resource.cc", | 43 "cast_resource.cc", |
| 46 "cast_resource.h", | 44 "cast_resource.h", |
| 47 "chromecast_config_android.cc", | 45 "chromecast_config_android.cc", |
| 48 "chromecast_config_android.h", | 46 "chromecast_config_android.h", |
| 49 "device_capabilities.h", | 47 "device_capabilities.h", |
| 50 "device_capabilities_impl.cc", | 48 "device_capabilities_impl.cc", |
| 51 "device_capabilities_impl.h", | 49 "device_capabilities_impl.h", |
| 52 "error_codes.cc", | 50 "error_codes.cc", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 public_deps = [ | 119 public_deps = [ |
| 122 ":base", | 120 ":base", |
| 123 "//base", | 121 "//base", |
| 124 ] | 122 ] |
| 125 } | 123 } |
| 126 | 124 |
| 127 test("cast_base_unittests") { | 125 test("cast_base_unittests") { |
| 128 sources = [ | 126 sources = [ |
| 129 "alarm_manager_unittest.cc", | 127 "alarm_manager_unittest.cc", |
| 130 "bind_to_task_runner_unittest.cc", | 128 "bind_to_task_runner_unittest.cc", |
| 131 "cast_features_unittest.cc", | |
| 132 "device_capabilities_impl_unittest.cc", | 129 "device_capabilities_impl_unittest.cc", |
| 133 "error_codes_unittest.cc", | 130 "error_codes_unittest.cc", |
| 134 "path_utils_unittest.cc", | 131 "path_utils_unittest.cc", |
| 135 "process_utils_unittest.cc", | 132 "process_utils_unittest.cc", |
| 136 "serializers_unittest.cc", | 133 "serializers_unittest.cc", |
| 137 "system_time_change_notifier_unittest.cc", | 134 "system_time_change_notifier_unittest.cc", |
| 138 ] | 135 ] |
| 139 | 136 |
| 140 deps = [ | 137 deps = [ |
| 141 ":test_support", | 138 ":test_support", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 "$java_src_dir/org/chromium/chromecast/base/ChromecastConfigAndroid.java", | 246 "$java_src_dir/org/chromium/chromecast/base/ChromecastConfigAndroid.java", |
| 250 "$java_src_dir/org/chromium/chromecast/base/DumpstateWriter.java", | 247 "$java_src_dir/org/chromium/chromecast/base/DumpstateWriter.java", |
| 251 "$java_src_dir/org/chromium/chromecast/base/SystemTimeChangeNotifierAndroi
d.java", | 248 "$java_src_dir/org/chromium/chromecast/base/SystemTimeChangeNotifierAndroi
d.java", |
| 252 ] | 249 ] |
| 253 | 250 |
| 254 deps = [ | 251 deps = [ |
| 255 "//base:base_java", | 252 "//base:base_java", |
| 256 ] | 253 ] |
| 257 } | 254 } |
| 258 } | 255 } |
| OLD | NEW |