Chromium Code Reviews| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("../chrome_utility.gypi") ], | 9 [ rebase_path("../chrome_utility.gypi") ], |
| 10 "scope", | 10 "scope", |
| 11 [ "../chrome_utility.gypi" ]) | 11 [ "../chrome_utility.gypi" ]) |
| 12 | 12 |
| 13 static_library("utility") { | 13 static_library("utility") { |
| 14 sources = rebase_path(gypi_values.chrome_utility_sources, ".", "..") | 14 sources = rebase_path(gypi_values.chrome_utility_sources, ".", "..") |
| 15 defines = [] | 15 defines = [] |
| 16 | 16 |
| 17 public_deps = [] | 17 public_deps = [] |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 "//components/strings", | 20 "//components/strings", |
| 21 "//components/search_engines", | |
|
Ilya Sherman
2015/01/16 02:14:20
nit: Please keep this list alphabetized.
Tapu Ghose
2015/01/16 03:22:20
Acknowledged.
| |
| 21 "//components/url_fixer", | 22 "//components/url_fixer", |
| 22 "//content/public/common", | 23 "//content/public/common", |
| 23 "//content/public/utility", | 24 "//content/public/utility", |
| 24 "//media", | 25 "//media", |
| 25 "//skia", | 26 "//skia", |
| 26 "//third_party/libxml", | 27 "//third_party/libxml", |
| 27 "//chrome:resources", | 28 "//chrome:resources", |
| 28 "//chrome:strings", | 29 "//chrome:strings", |
| 29 "//chrome/common", | 30 "//chrome/common", |
| 30 ] | 31 ] |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 95 sources -= [ | 96 sources -= [ |
| 96 "local_discovery/service_discovery_message_handler.cc", | 97 "local_discovery/service_discovery_message_handler.cc", |
| 97 "local_discovery/service_discovery_message_handler.h", | 98 "local_discovery/service_discovery_message_handler.h", |
| 98 ] | 99 ] |
| 99 } | 100 } |
| 100 | 101 |
| 101 if (safe_browsing_mode == 1) { | 102 if (safe_browsing_mode == 1) { |
| 102 defines += [ "FULL_SAFE_BROWSING" ] | 103 defines += [ "FULL_SAFE_BROWSING" ] |
| 103 } | 104 } |
| 104 } | 105 } |
| OLD | NEW |