| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//ui/events:gesture_detection", | 64 "//ui/events:gesture_detection", |
| 65 "//ui/gfx", | 65 "//ui/gfx", |
| 66 "//ui/gfx/geometry", | 66 "//ui/gfx/geometry", |
| 67 "//ui/gl", | 67 "//ui/gl", |
| 68 "//ui/native_theme", | 68 "//ui/native_theme", |
| 69 "//ui/resources", | 69 "//ui/resources", |
| 70 "//ui/snapshot", | 70 "//ui/snapshot", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 data_deps = [ | 73 data_deps = [ |
| 74 ":chrome_manifest", |
| 74 ":chrome_renderer_manifest", | 75 ":chrome_renderer_manifest", |
| 75 ] | 76 ] |
| 76 | 77 |
| 77 if (is_ios) { | 78 if (is_ios) { |
| 78 # iOS doesn't get the normal file list and only takes these whitelisted | 79 # iOS doesn't get the normal file list and only takes these whitelisted |
| 79 # files. | 80 # files. |
| 80 sources = [ | 81 sources = [ |
| 81 "browser_context.cc", | 82 "browser_context.cc", |
| 82 "browser_main_loop.cc", | 83 "browser_main_loop.cc", |
| 83 "browser_main_runner.cc", | 84 "browser_main_runner.cc", |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 if (enable_webvr && is_android) { | 537 if (enable_webvr && is_android) { |
| 537 sources += [ | 538 sources += [ |
| 538 "vr/android/cardboard/cardboard_vr_device.cc", | 539 "vr/android/cardboard/cardboard_vr_device.cc", |
| 539 "vr/android/cardboard/cardboard_vr_device.h", | 540 "vr/android/cardboard/cardboard_vr_device.h", |
| 540 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 541 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 541 "vr/android/cardboard/cardboard_vr_device_provider.h", | 542 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 542 ] | 543 ] |
| 543 } | 544 } |
| 544 } | 545 } |
| 545 | 546 |
| 547 mojo_application_manifest("chrome_manifest") { |
| 548 type = "exe" |
| 549 application_name = "chrome" |
| 550 source = "mojo/chrome_manifest.json" |
| 551 } |
| 552 |
| 546 mojo_application_manifest("chrome_renderer_manifest") { | 553 mojo_application_manifest("chrome_renderer_manifest") { |
| 547 type = "exe" | 554 type = "exe" |
| 548 application_name = "chrome_renderer" | 555 application_name = "chrome_renderer" |
| 549 source = "mojo/chrome_renderer_manifest.json" | 556 source = "mojo/chrome_renderer_manifest.json" |
| 550 } | 557 } |
| OLD | NEW |