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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 "safe_browsing/protobuf_message_read_macros.h", | 496 "safe_browsing/protobuf_message_read_macros.h", |
497 "safe_browsing/protobuf_message_size_macros.h", | 497 "safe_browsing/protobuf_message_size_macros.h", |
498 "safe_browsing/protobuf_message_write_macros.h", | 498 "safe_browsing/protobuf_message_write_macros.h", |
499 "safe_browsing/zip_analyzer.cc", | 499 "safe_browsing/zip_analyzer.cc", |
500 "safe_browsing/zip_analyzer.h", | 500 "safe_browsing/zip_analyzer.h", |
501 "safe_browsing/zip_analyzer_results.cc", | 501 "safe_browsing/zip_analyzer_results.cc", |
502 "safe_browsing/zip_analyzer_results.h", | 502 "safe_browsing/zip_analyzer_results.h", |
503 ] | 503 ] |
504 } | 504 } |
505 } | 505 } |
| 506 |
| 507 if (enable_vr_shell) { |
| 508 defines += [ "ENABLE_VR_SHELL" ] |
| 509 } |
506 } | 510 } |
507 | 511 |
508 process_version("version_header") { | 512 process_version("version_header") { |
509 # TODO(brettw) this should have more reduced visibility, but chrome/browser | 513 # TODO(brettw) this should have more reduced visibility, but chrome/browser |
510 # currently depends on this. | 514 # currently depends on this. |
511 #visibility = [ ":*" ] | 515 #visibility = [ ":*" ] |
512 | 516 |
513 # This one just uses the custom template and no separate sources. | 517 # This one just uses the custom template and no separate sources. |
514 sources = [] | 518 sources = [] |
515 template_file = "chrome_version.h.in" | 519 template_file = "chrome_version.h.in" |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 "resource_usage_reporter.mojom", | 646 "resource_usage_reporter.mojom", |
643 "shell_handler_win.mojom", | 647 "shell_handler_win.mojom", |
644 ] | 648 ] |
645 | 649 |
646 public_deps = [ | 650 public_deps = [ |
647 "//skia/public/interfaces", | 651 "//skia/public/interfaces", |
648 ] | 652 ] |
649 | 653 |
650 use_new_wrapper_types = false | 654 use_new_wrapper_types = false |
651 } | 655 } |
OLD | NEW |