| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 173 |
| 174 if (!is_win && !is_mac && !is_android && (!is_linux || !use_udev)) { | 174 if (!is_win && !is_mac && !is_android && (!is_linux || !use_udev)) { |
| 175 sources += [ "gamepad/gamepad_platform_data_fetcher.cc" ] | 175 sources += [ "gamepad/gamepad_platform_data_fetcher.cc" ] |
| 176 } | 176 } |
| 177 | 177 |
| 178 if (enable_basic_printing || enable_print_preview) { | 178 if (enable_basic_printing || enable_print_preview) { |
| 179 deps += [ "//printing" ] | 179 deps += [ "//printing" ] |
| 180 } | 180 } |
| 181 | 181 |
| 182 # TODO(GYP) | 182 # TODO(GYP) |
| 183 # ['OS!="ios" and chrome_multiple_dll!=1', { | 183 # [chrome_multiple_dll!=1', { |
| 184 # 'dependencies': [ | 184 # 'dependencies': [ |
| 185 # '../third_party/WebKit/public/blink.gyp:blink', | 185 # '../third_party/WebKit/public/blink.gyp:blink', |
| 186 # ], | 186 # ], |
| 187 # }], | 187 # }], |
| 188 if (!is_mac && !is_ios) { | 188 if (!is_mac && !is_ios) { |
| 189 deps += [ "//sandbox" ] | 189 deps += [ "//sandbox" ] |
| 190 } | 190 } |
| 191 if (!is_android && !is_ios) { | 191 if (!is_android && !is_ios) { |
| 192 deps += [ "//content/browser/tracing:resources" ] | 192 deps += [ "//content/browser/tracing:resources" ] |
| 193 } | 193 } |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 sources -= [ | 492 sources -= [ |
| 493 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", | 493 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", |
| 494 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", | 494 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", |
| 495 "compositor/software_output_device_ozone.cc", | 495 "compositor/software_output_device_ozone.cc", |
| 496 "compositor/software_output_device_ozone.h", | 496 "compositor/software_output_device_ozone.h", |
| 497 ] | 497 ] |
| 498 } | 498 } |
| 499 deps += [ "//ui/compositor" ] | 499 deps += [ "//ui/compositor" ] |
| 500 } | 500 } |
| 501 | 501 |
| 502 if (!is_ios) { | |
| 503 sources += [ | |
| 504 "compositor/surface_utils.cc", | |
| 505 "compositor/surface_utils.h", | |
| 506 ] | |
| 507 } | |
| 508 | |
| 509 if (enable_web_speech) { | 502 if (enable_web_speech) { |
| 510 deps += [ "//third_party/flac" ] | 503 deps += [ "//third_party/flac" ] |
| 511 } | 504 } |
| 512 | 505 |
| 513 if (is_linux && use_dbus) { | 506 if (is_linux && use_dbus) { |
| 514 deps += [ "//dbus" ] | 507 deps += [ "//dbus" ] |
| 515 } | 508 } |
| 516 | 509 |
| 517 if (enable_browser_cdms) { | 510 if (enable_browser_cdms) { |
| 518 sources += [ | 511 sources += [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 541 | 534 |
| 542 if (enable_webvr && is_android) { | 535 if (enable_webvr && is_android) { |
| 543 sources += [ | 536 sources += [ |
| 544 "vr/android/cardboard/cardboard_vr_device.cc", | 537 "vr/android/cardboard/cardboard_vr_device.cc", |
| 545 "vr/android/cardboard/cardboard_vr_device.h", | 538 "vr/android/cardboard/cardboard_vr_device.h", |
| 546 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 539 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 547 "vr/android/cardboard/cardboard_vr_device_provider.h", | 540 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 548 ] | 541 ] |
| 549 } | 542 } |
| 550 } | 543 } |
| OLD | NEW |