| 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 import("//mojo/public/mojo_application_manifest.gni") | 9 import("//mojo/public/mojo_application_manifest.gni") |
| 10 | 10 |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 "device_sensors/data_fetcher_shared_memory_default.cc", | 405 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 406 "geolocation/empty_wifi_data_provider.cc", | 406 "geolocation/empty_wifi_data_provider.cc", |
| 407 "geolocation/empty_wifi_data_provider.h", | 407 "geolocation/empty_wifi_data_provider.h", |
| 408 ] | 408 ] |
| 409 deps += [ | 409 deps += [ |
| 410 "//sandbox/mac:sandbox", | 410 "//sandbox/mac:sandbox", |
| 411 "//third_party/mozilla", | 411 "//third_party/mozilla", |
| 412 "//third_party/sudden_motion_sensor", | 412 "//third_party/sudden_motion_sensor", |
| 413 "//ui/accelerated_widget_mac", | 413 "//ui/accelerated_widget_mac", |
| 414 ] | 414 ] |
| 415 libs += [ "QTKit.framework" ] | |
| 416 } | 415 } |
| 417 | 416 |
| 418 if (is_chromeos) { | 417 if (is_chromeos) { |
| 419 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 418 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
| 420 deps += [ | 419 deps += [ |
| 421 "//chromeos", | 420 "//chromeos", |
| 422 "//chromeos:power_manager_proto", | 421 "//chromeos:power_manager_proto", |
| 423 ] | 422 ] |
| 424 } | 423 } |
| 425 | 424 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 type = "exe" | 548 type = "exe" |
| 550 application_name = "chrome" | 549 application_name = "chrome" |
| 551 source = "mojo/chrome_manifest.json" | 550 source = "mojo/chrome_manifest.json" |
| 552 } | 551 } |
| 553 | 552 |
| 554 mojo_application_manifest("chrome_renderer_manifest") { | 553 mojo_application_manifest("chrome_renderer_manifest") { |
| 555 type = "exe" | 554 type = "exe" |
| 556 application_name = "chrome_renderer" | 555 application_name = "chrome_renderer" |
| 557 source = "mojo/chrome_renderer_manifest.json" | 556 source = "mojo/chrome_renderer_manifest.json" |
| 558 } | 557 } |
| OLD | NEW |