| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//extensions/extensions.gni") | 6 import("//extensions/extensions.gni") |
| 7 | 7 |
| 8 # GYP version: extensions/extensions.gyp:extensions_browser | 8 # GYP version: extensions/extensions.gyp:extensions_browser |
| 9 source_set("browser") { | 9 source_set("browser") { |
| 10 sources = [] | 10 sources = [] |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 deps += [ | 55 deps += [ |
| 56 "//components/browsing_data", | 56 "//components/browsing_data", |
| 57 "//components/onc", | 57 "//components/onc", |
| 58 "//components/storage_monitor", | 58 "//components/storage_monitor", |
| 59 "//components/update_client", | 59 "//components/update_client", |
| 60 "//components/variations", | 60 "//components/variations", |
| 61 "//crypto:platform", | 61 "//crypto:platform", |
| 62 "//device/bluetooth", | 62 "//device/bluetooth", |
| 63 "//device/core", | 63 "//device/core", |
| 64 "//device/hid", | 64 "//device/hid", |
| 65 "//device/power_save_blocker", | |
| 66 "//device/serial", | 65 "//device/serial", |
| 67 "//device/usb", | 66 "//device/usb", |
| 68 "//extensions/common/api/cast_channel:cast_channel_proto", | 67 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 if (is_chromeos) { | 70 if (is_chromeos) { |
| 72 deps += [ "//chromeos" ] | 71 deps += [ "//chromeos" ] |
| 73 } | 72 } |
| 74 | 73 |
| 75 if (is_chromeos) { | 74 if (is_chromeos) { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 if (proprietary_codecs && enable_wifi_display) { | 107 if (proprietary_codecs && enable_wifi_display) { |
| 109 wifi_display_sources = rebase_path( | 108 wifi_display_sources = rebase_path( |
| 110 extensions_gypi_values.extensions_browser_sources_wifi_display, | 109 extensions_gypi_values.extensions_browser_sources_wifi_display, |
| 111 ".", | 110 ".", |
| 112 "//extensions") | 111 "//extensions") |
| 113 sources += wifi_display_sources | 112 sources += wifi_display_sources |
| 114 } | 113 } |
| 115 } | 114 } |
| 116 } | 115 } |
| 117 } | 116 } |
| OLD | NEW |