| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_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 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1209 "webui/flash_ui.h", | 1209 "webui/flash_ui.h", |
| 1210 "webui/options/pepper_flash_content_settings_utils.cc", | 1210 "webui/options/pepper_flash_content_settings_utils.cc", |
| 1211 "webui/options/pepper_flash_content_settings_utils.h", | 1211 "webui/options/pepper_flash_content_settings_utils.h", |
| 1212 ] | 1212 ] |
| 1213 deps += [ "//ppapi/proxy:ipc" ] | 1213 deps += [ "//ppapi/proxy:ipc" ] |
| 1214 } | 1214 } |
| 1215 if (safe_browsing_mode == 1) { | 1215 if (safe_browsing_mode == 1) { |
| 1216 deps += [ | 1216 deps += [ |
| 1217 "//chrome/browser/safe_browsing:chunk_proto", | 1217 "//chrome/browser/safe_browsing:chunk_proto", |
| 1218 "//chrome/common/safe_browsing:proto", | 1218 "//chrome/common/safe_browsing:proto", |
| 1219 "//components/safe_browsing:csd_proto", |
| 1219 ] | 1220 ] |
| 1220 } | 1221 } |
| 1221 | 1222 |
| 1222 if (is_chromeos && !is_official_build) { | 1223 if (is_chromeos && !is_official_build) { |
| 1223 sources += [ | 1224 sources += [ |
| 1224 "webui/chromeos/emulator/device_emulator_message_handler.cc", | 1225 "webui/chromeos/emulator/device_emulator_message_handler.cc", |
| 1225 "webui/chromeos/emulator/device_emulator_message_handler.h", | 1226 "webui/chromeos/emulator/device_emulator_message_handler.h", |
| 1226 "webui/chromeos/emulator/device_emulator_ui.cc", | 1227 "webui/chromeos/emulator/device_emulator_ui.cc", |
| 1227 "webui/chromeos/emulator/device_emulator_ui.h", | 1228 "webui/chromeos/emulator/device_emulator_ui.h", |
| 1228 ] | 1229 ] |
| (...skipping 2301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3530 "test/test_confirm_bubble_model.cc", | 3531 "test/test_confirm_bubble_model.cc", |
| 3531 "test/test_confirm_bubble_model.h", | 3532 "test/test_confirm_bubble_model.h", |
| 3532 ] | 3533 ] |
| 3533 deps += [ "//chrome/test:test_support_ui" ] | 3534 deps += [ "//chrome/test:test_support_ui" ] |
| 3534 } | 3535 } |
| 3535 | 3536 |
| 3536 if (enable_extensions) { | 3537 if (enable_extensions) { |
| 3537 deps += [ "//extensions/browser" ] | 3538 deps += [ "//extensions/browser" ] |
| 3538 } | 3539 } |
| 3539 } | 3540 } |
| OLD | NEW |