| 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 import("//build/config/sysroot.gni") | 7 import("//build/config/sysroot.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 | 10 |
| 11 static_library("utility") { | 11 static_library("utility") { |
| 12 sources = [ | 12 sources = [ |
| 13 "chrome_content_utility_client.cc", | 13 "chrome_content_utility_client.cc", |
| 14 "chrome_content_utility_client.h", | 14 "chrome_content_utility_client.h", |
| 15 "chrome_content_utility_ipc_whitelist.cc", | |
| 16 "chrome_content_utility_ipc_whitelist.h", | |
| 17 "cloud_print/bitmap_image.cc", | 15 "cloud_print/bitmap_image.cc", |
| 18 "cloud_print/bitmap_image.h", | 16 "cloud_print/bitmap_image.h", |
| 19 "cloud_print/pwg_encoder.cc", | 17 "cloud_print/pwg_encoder.cc", |
| 20 "cloud_print/pwg_encoder.h", | 18 "cloud_print/pwg_encoder.h", |
| 21 "ipc_shell_handler_win.cc", | 19 "ipc_shell_handler_win.cc", |
| 22 "ipc_shell_handler_win.h", | 20 "ipc_shell_handler_win.h", |
| 23 "printing_handler.cc", | 21 "printing_handler.cc", |
| 24 "printing_handler.h", | 22 "printing_handler.h", |
| 25 "shell_handler_impl_win.cc", | 23 "shell_handler_impl_win.cc", |
| 26 "shell_handler_impl_win.h", | 24 "shell_handler_impl_win.h", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 sources -= [ | 171 sources -= [ |
| 174 "printing_handler.cc", | 172 "printing_handler.cc", |
| 175 "printing_handler.h", | 173 "printing_handler.h", |
| 176 ] | 174 ] |
| 177 } | 175 } |
| 178 | 176 |
| 179 if (is_mac && safe_browsing_mode == 1) { | 177 if (is_mac && safe_browsing_mode == 1) { |
| 180 deps += [ "//chrome/utility/safe_browsing/mac" ] | 178 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 181 } | 179 } |
| 182 } | 180 } |
| OLD | NEW |