| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 # TODO(kjellander): Convert the rest of the test.gyp targets and put here. | 9 # TODO(kjellander): Convert the rest of the test.gyp targets and put here. |
| 10 | 10 |
| 11 source_set("test") { | 11 source_set("test") { |
| 12 testonly = true | 12 testonly = true |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 ":field_trial", | 15 ":field_trial", |
| 16 ":test_support", | 16 ":test_support", |
| 17 ":test_support_main", | 17 ":test_support_main", |
| 18 ] | 18 ] |
| 19 } | 19 } |
| 20 | 20 |
| 21 source_set("field_trial") { | 21 source_set("field_trial") { |
| 22 sources = [ | 22 sources = [ |
| 23 "field_trial.cc", | 23 "field_trial.cc", |
| 24 "field_trial.h", | 24 "field_trial.h", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 deps = [ | 27 deps = [ |
| 28 "..:webrtc_common", | 28 "..:webrtc_common", |
| 29 "../system_wrappers", | 29 "../system_wrappers", |
| 30 "../system_wrappers:field_trial_default", |
| 30 ] | 31 ] |
| 31 | 32 |
| 32 configs += [ "..:common_config" ] | 33 configs += [ "..:common_config" ] |
| 33 public_configs = [ "..:common_inherited_config" ] | 34 public_configs = [ "..:common_inherited_config" ] |
| 34 } | 35 } |
| 35 | 36 |
| 36 source_set("histogram") { | 37 source_set("histogram") { |
| 37 sources = [ | 38 sources = [ |
| 38 "histogram.cc", | 39 "histogram.cc", |
| 39 "histogram.h", | 40 "histogram.h", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ":histogram", | 99 ":histogram", |
| 99 ":test_support", | 100 ":test_support", |
| 100 "//testing/gmock", | 101 "//testing/gmock", |
| 101 "//testing/gtest", | 102 "//testing/gtest", |
| 102 "//third_party/gflags", | 103 "//third_party/gflags", |
| 103 ] | 104 ] |
| 104 | 105 |
| 105 configs += [ "..:common_config" ] | 106 configs += [ "..:common_config" ] |
| 106 public_configs = [ "..:common_inherited_config" ] | 107 public_configs = [ "..:common_inherited_config" ] |
| 107 } | 108 } |
| OLD | NEW |