| 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/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "//testing/gtest", | 92 "//testing/gtest", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 data = [] | 95 data = [] |
| 96 | 96 |
| 97 # TODO(dtrainor): Fix the test harness to allow this to run on Android. | 97 # TODO(dtrainor): Fix the test harness to allow this to run on Android. |
| 98 # See crbug.com/588240. | 98 # See crbug.com/588240. |
| 99 if (is_linux) { | 99 if (is_linux) { |
| 100 sources += [ "session/assignment_source_unittest.cc" ] | 100 sources += [ "session/assignment_source_unittest.cc" ] |
| 101 deps += [ | 101 deps += [ |
| 102 "//blimp/common", |
| 103 "//blimp/common:test_support", |
| 102 "//components/safe_json:test_support", | 104 "//components/safe_json:test_support", |
| 103 "//net:test_support", | 105 "//net:test_support", |
| 104 ] | 106 ] |
| 105 data += [ "session/test_selfsigned_cert.pem" ] | 107 data += [ |
| 108 "session/test_selfsigned_cert.pem", |
| 109 "//blimp/test/data/test_client_token", |
| 110 ] |
| 106 } | 111 } |
| 107 } | 112 } |
| 108 | 113 |
| 109 source_set("app_unit_tests") { | 114 source_set("app_unit_tests") { |
| 110 testonly = true | 115 testonly = true |
| 111 | 116 |
| 112 sources = [ | 117 sources = [ |
| 113 "app/blimp_discardable_memory_allocator_unittest.cc", | 118 "app/blimp_discardable_memory_allocator_unittest.cc", |
| 114 ] | 119 ] |
| 115 | 120 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 apk_name = "BlimpTest" | 518 apk_name = "BlimpTest" |
| 514 apk_under_test = ":blimp_apk" | 519 apk_under_test = ":blimp_apk" |
| 515 android_manifest = blimp_test_apk_manifest | 520 android_manifest = blimp_test_apk_manifest |
| 516 deps = [ | 521 deps = [ |
| 517 ":blimp_test_apk_manifest", | 522 ":blimp_test_apk_manifest", |
| 518 ":blimp_test_java", | 523 ":blimp_test_java", |
| 519 google_play_services_resources, | 524 google_play_services_resources, |
| 520 ] | 525 ] |
| 521 } | 526 } |
| 522 } | 527 } |
| OLD | NEW |