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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 deps += [ "//ui/events" ] | 118 deps += [ "//ui/events" ] |
119 } | 119 } |
120 | 120 |
121 if (is_win) { | 121 if (is_win) { |
122 sources += [ | 122 sources += [ |
123 "power_profiler/power_data_provider_ia_win.cc", | 123 "power_profiler/power_data_provider_ia_win.cc", |
124 "power_profiler/power_data_provider_ia_win.h", | 124 "power_profiler/power_data_provider_ia_win.h", |
125 ] | 125 ] |
126 deps += [ "//third_party/power_gadget" ] | 126 deps += [ "//third_party/power_gadget" ] |
127 } else { | 127 } else { |
128 sources += [ "power_profiler/power_data_provider_dummy.cc" ] | 128 sources += [ |
| 129 "power_profiler/power_data_provider_dummy.cc", |
| 130 "file_descriptor_info_impl.cc", |
| 131 "file_descriptor_info_impl.h", |
| 132 ] |
129 sources -= [ "renderer_host/web_input_event_aurawin.cc" ] | 133 sources -= [ "renderer_host/web_input_event_aurawin.cc" ] |
130 } | 134 } |
131 | 135 |
132 if (!is_win && !is_mac && !is_android && (!is_linux || !use_udev)) { | 136 if (!is_win && !is_mac && !is_android && (!is_linux || !use_udev)) { |
133 sources += [ "gamepad/gamepad_platform_data_fetcher.cc" ] | 137 sources += [ "gamepad/gamepad_platform_data_fetcher.cc" ] |
134 } | 138 } |
135 | 139 |
136 if (printing_mode != 0) { | 140 if (printing_mode != 0) { |
137 deps += [ "//printing" ] | 141 deps += [ "//printing" ] |
138 } | 142 } |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 | 416 |
413 if (enable_browser_cdms) { | 417 if (enable_browser_cdms) { |
414 sources += [ | 418 sources += [ |
415 "media/cdm/browser_cdm_manager.cc", | 419 "media/cdm/browser_cdm_manager.cc", |
416 "media/cdm/browser_cdm_manager.h", | 420 "media/cdm/browser_cdm_manager.h", |
417 "media/media_web_contents_observer.cc", | 421 "media/media_web_contents_observer.cc", |
418 "media/media_web_contents_observer.h", | 422 "media/media_web_contents_observer.h", |
419 ] | 423 ] |
420 } | 424 } |
421 } | 425 } |
OLD | NEW |