| 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "browser/initialization.cc", | 7 "browser/initialization.cc", |
| 8 "browser/initialization.h", | 8 "browser/initialization.h", |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 deps = [ | 11 deps = [ |
| 12 ":common", | 12 ":common", |
| 13 "//base", | 13 "//base", |
| 14 "//base:base_static", | 14 "//base:base_static", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 static_library("renderer") { |
| 19 sources = [ |
| 20 "renderer/initialization.cc", |
| 21 "renderer/initialization.h", |
| 22 ] |
| 23 |
| 24 deps = [ |
| 25 ":common", |
| 26 "//base", |
| 27 ] |
| 28 } |
| 29 |
| 18 static_library("common") { | 30 static_library("common") { |
| 19 sources = [ | 31 sources = [ |
| 20 "common/variations_util.cc", | 32 "common/variations_util.cc", |
| 21 "common/variations_util.h", | 33 "common/variations_util.h", |
| 22 ] | 34 ] |
| 23 | 35 |
| 24 deps = [ | 36 deps = [ |
| 25 "//base", | 37 "//base", |
| 26 ] | 38 ] |
| 27 } | 39 } |
| 28 | 40 |
| 29 source_set("unit_tests") { | 41 source_set("unit_tests") { |
| 30 testonly = true | 42 testonly = true |
| 31 sources = [ | 43 sources = [ |
| 32 "common/variations_util_unittest.cc", | 44 "common/variations_util_unittest.cc", |
| 33 ] | 45 ] |
| 34 deps = [ | 46 deps = [ |
| 35 ":common", | 47 ":common", |
| 36 "//base", | 48 "//base", |
| 37 "//testing/gtest", | 49 "//testing/gtest", |
| 38 ] | 50 ] |
| 39 } | 51 } |
| OLD | NEW |