| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 source_set("session") { | 10 source_set("session") { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "//base", | 31 "//base", |
| 32 "//blimp/client/public:public_headers", | 32 "//blimp/client/public:public_headers", |
| 33 "//blimp/net", | 33 "//blimp/net", |
| 34 "//components/safe_json", | 34 "//components/safe_json", |
| 35 "//google_apis", | 35 "//google_apis", |
| 36 "//net", | 36 "//net", |
| 37 "//url", | 37 "//url", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 "//blimp/client/core:switches", | 41 "//blimp/client/core/switches", |
| 42 "//blimp/common", | 42 "//blimp/common", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 source_set("unit_tests") { | 46 source_set("unit_tests") { |
| 47 visibility = [ "//blimp/client/core:unit_tests" ] | 47 visibility = [ "//blimp/client/core:unit_tests" ] |
| 48 | 48 |
| 49 testonly = true | 49 testonly = true |
| 50 | 50 |
| 51 sources = [ | 51 sources = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 62 ] | 62 ] |
| 63 | 63 |
| 64 data = [] | 64 data = [] |
| 65 | 65 |
| 66 # TODO(dtrainor): Fix the test harness to allow this to run on Android. | 66 # TODO(dtrainor): Fix the test harness to allow this to run on Android. |
| 67 # See crbug.com/588240. | 67 # See crbug.com/588240. |
| 68 if (is_linux) { | 68 if (is_linux) { |
| 69 sources += [ "assignment_source_unittest.cc" ] | 69 sources += [ "assignment_source_unittest.cc" ] |
| 70 | 70 |
| 71 deps += [ | 71 deps += [ |
| 72 "//blimp/client/core:switches", | 72 "//blimp/client/core/switches", |
| 73 "//blimp/common", | 73 "//blimp/common", |
| 74 "//blimp/common:test_support", | 74 "//blimp/common:test_support", |
| 75 "//components/safe_json:test_support", | 75 "//components/safe_json:test_support", |
| 76 "//net:test_support", | 76 "//net:test_support", |
| 77 "//url", | 77 "//url", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 data += [ | 80 data += [ |
| 81 "test_selfsigned_cert.pem", | 81 "test_selfsigned_cert.pem", |
| 82 "//blimp/test/data/test_client_token", | 82 "//blimp/test/data/test_client_token", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 } | 85 } |
| OLD | NEW |