OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 'service', | 69 'service', |
70 ], | 70 ], |
71 }], | 71 }], |
72 ['OS=="win"', { | 72 ['OS=="win"', { |
73 'platform_locale_settings_grd': | 73 'platform_locale_settings_grd': |
74 'app/resources/locale_settings_win.grd', | 74 'app/resources/locale_settings_win.grd', |
75 },], | 75 },], |
76 ['OS=="linux"', { | 76 ['OS=="linux"', { |
77 'conditions': [ | 77 'conditions': [ |
78 ['chromeos==1', { | 78 ['chromeos==1', { |
79 'conditions': [ | 79 'platform_locale_settings_grd': |
80 ['branding=="Chrome"', { | 80 'app/resources/locale_settings_<(branding_path_component)os.
grd', |
81 'platform_locale_settings_grd': | |
82 'app/resources/locale_settings_google_chromeos.grd', | |
83 }, { # branding!=Chrome | |
84 'platform_locale_settings_grd': | |
85 'app/resources/locale_settings_chromiumos.grd', | |
86 }], | |
87 ] | |
88 }, { # chromeos==0 | 81 }, { # chromeos==0 |
89 'platform_locale_settings_grd': | 82 'platform_locale_settings_grd': |
90 'app/resources/locale_settings_linux.grd', | 83 'app/resources/locale_settings_linux.grd', |
91 }], | 84 }], |
92 ], | 85 ], |
93 },], | 86 },], |
94 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "linux"', { | 87 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "linux"', { |
95 'platform_locale_settings_grd': | 88 'platform_locale_settings_grd': |
96 'app/resources/locale_settings_linux.grd', | 89 'app/resources/locale_settings_linux.grd', |
97 },], | 90 },], |
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 '<(DEPTH)/third_party/kasko' | 794 '<(DEPTH)/third_party/kasko' |
802 ], | 795 ], |
803 }, | 796 }, |
804 }, | 797 }, |
805 }, | 798 }, |
806 }, | 799 }, |
807 ], | 800 ], |
808 }], | 801 }], |
809 ], # 'conditions' | 802 ], # 'conditions' |
810 } | 803 } |
OLD | NEW |