| 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 action("field_trial_testing_config_action") { | 5 action("field_trial_testing_config_action") { |
| 6 visibility = [ ":field_trial_config" ] | 6 visibility = [ ":field_trial_config" ] |
| 7 script = "//tools/variations/fieldtrial_to_struct.py" | 7 script = "//tools/variations/fieldtrial_to_struct.py" |
| 8 | 8 |
| 9 source = "//testing/variations/fieldtrial_testing_config.json" | 9 source = "//testing/variations/fieldtrial_testing_config.json" |
| 10 inputs = [ | 10 inputs = [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 source_set("unit_tests") { | 49 source_set("unit_tests") { |
| 50 testonly = true | 50 testonly = true |
| 51 sources = [ | 51 sources = [ |
| 52 "field_trial_util_unittest.cc", | 52 "field_trial_util_unittest.cc", |
| 53 ] | 53 ] |
| 54 deps = [ | 54 deps = [ |
| 55 ":field_trial_config", | 55 ":field_trial_config", |
| 56 "//base", | 56 "//base", |
| 57 "//base/test:test_support", |
| 57 "//components/variations", | 58 "//components/variations", |
| 58 "//testing/gtest", | 59 "//testing/gtest", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| OLD | NEW |