1# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5declare_args() {
6  # Select the desired branding flavor. False means normal Chromium branding,
7  # true means official Google Chrome branding (requires extra Google-internal
8  # resources).
9  is_chrome_branded = false
10
11  # Turn this on to generate order files. See
12  # https://chromium.googlesource.com/chromium/src/+/master/docs/win_order_files.md
13  generate_order_files = false
14}
15
16declare_args() {
17  # Refers to the subdirectory for branding in various places including
18  # chrome/app/theme.
19  if (is_chrome_branded) {
20    branding_path_component = "google_chrome"
21  } else {
22    branding_path_component = "chromium"
23  }
24}
25
26declare_args() {
27  # The path to the BRANDING file in chrome/app/theme.
28  branding_file_path = "//chrome/app/theme/$branding_path_component/BRANDING"
29}
30