| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 4218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4229 "//testing/gtest", | 4229 "//testing/gtest", |
| 4230 ] | 4230 ] |
| 4231 } | 4231 } |
| 4232 | 4232 |
| 4233 if (enable_rlz_support) { | 4233 if (enable_rlz_support) { |
| 4234 static_library("rlz") { | 4234 static_library("rlz") { |
| 4235 sources = [ | 4235 sources = [ |
| 4236 "rlz/chrome_rlz_tracker_delegate.cc", | 4236 "rlz/chrome_rlz_tracker_delegate.cc", |
| 4237 "rlz/chrome_rlz_tracker_delegate.h", | 4237 "rlz/chrome_rlz_tracker_delegate.h", |
| 4238 ] | 4238 ] |
| 4239 deps = [ | 4239 public_deps = [ |
| 4240 "//components/google/core/browser", | 4240 "//components/google/core/browser", |
| 4241 "//components/omnibox/browser", | 4241 "//components/omnibox/browser", |
| 4242 "//components/rlz", | 4242 "//components/rlz", |
| 4243 "//components/search_engines", | 4243 "//components/search_engines", |
| 4244 "//rlz:rlz_lib", | 4244 "//rlz:rlz_lib", |
| 4245 ] | 4245 ] |
| 4246 } | 4246 } |
| 4247 } | 4247 } |
| 4248 | 4248 |
| 4249 if (enable_pepper_cdms) { | 4249 if (enable_pepper_cdms) { |
| 4250 # These constants are separated so that test binaries can use them without | 4250 # These constants are separated so that test binaries can use them without |
| 4251 # linking all of the test support. | 4251 # linking all of the test support. |
| 4252 static_library("pepper_cdm_test_constants") { | 4252 static_library("pepper_cdm_test_constants") { |
| 4253 testonly = true | 4253 testonly = true |
| 4254 visibility = [ "//chrome/*" ] | 4254 visibility = [ "//chrome/*" ] |
| 4255 sources = [ | 4255 sources = [ |
| 4256 "media/pepper_cdm_test_constants.cc", | 4256 "media/pepper_cdm_test_constants.cc", |
| 4257 "media/pepper_cdm_test_constants.h", | 4257 "media/pepper_cdm_test_constants.h", |
| 4258 ] | 4258 ] |
| 4259 } | 4259 } |
| 4260 } | 4260 } |
| OLD | NEW |