| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "device_sensors/data_fetcher_shared_memory_default.cc", | 387 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 388 "geolocation/empty_wifi_data_provider.cc", | 388 "geolocation/empty_wifi_data_provider.cc", |
| 389 "geolocation/empty_wifi_data_provider.h", | 389 "geolocation/empty_wifi_data_provider.h", |
| 390 ] | 390 ] |
| 391 deps += [ | 391 deps += [ |
| 392 "//sandbox/mac:sandbox", | 392 "//sandbox/mac:sandbox", |
| 393 "//third_party/mozilla", | 393 "//third_party/mozilla", |
| 394 "//third_party/sudden_motion_sensor", | 394 "//third_party/sudden_motion_sensor", |
| 395 "//ui/accelerated_widget_mac", | 395 "//ui/accelerated_widget_mac", |
| 396 ] | 396 ] |
| 397 libs += [ "QTKit.framework" ] | |
| 398 } | 397 } |
| 399 | 398 |
| 400 if (is_chromeos) { | 399 if (is_chromeos) { |
| 401 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 400 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
| 402 deps += [ | 401 deps += [ |
| 403 "//chromeos", | 402 "//chromeos", |
| 404 "//chromeos:power_manager_proto", | 403 "//chromeos:power_manager_proto", |
| 405 ] | 404 ] |
| 406 } | 405 } |
| 407 | 406 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 type = "exe" | 540 type = "exe" |
| 542 application_name = "chrome" | 541 application_name = "chrome" |
| 543 source = "mojo/chrome_manifest.json" | 542 source = "mojo/chrome_manifest.json" |
| 544 } | 543 } |
| 545 | 544 |
| 546 mojo_application_manifest("chrome_renderer_manifest") { | 545 mojo_application_manifest("chrome_renderer_manifest") { |
| 547 type = "exe" | 546 type = "exe" |
| 548 application_name = "chrome_renderer" | 547 application_name = "chrome_renderer" |
| 549 source = "mojo/chrome_renderer_manifest.json" | 548 source = "mojo/chrome_renderer_manifest.json" |
| 550 } | 549 } |
| OLD | NEW |