| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'installer_util', | 188 'installer_util', |
| 189 ], | 189 ], |
| 190 'sources': [ | 190 'sources': [ |
| 191 'app/chrome_dll_main.cc', | 191 'app/chrome_dll_main.cc', |
| 192 'app/chrome_dll_resource.h', | 192 'app/chrome_dll_resource.h', |
| 193 ], | 193 ], |
| 194 'copies': [ | 194 'copies': [ |
| 195 { | 195 { |
| 196 'destination': '<(PRODUCT_DIR)', | 196 'destination': '<(PRODUCT_DIR)', |
| 197 'files': ['tools/build/linux/chrome-wrapper', | 197 'files': ['tools/build/linux/chrome-wrapper', |
| 198 '../third_party/xdg-utils/scripts/xdg-mime', |
| 198 '../third_party/xdg-utils/scripts/xdg-settings', | 199 '../third_party/xdg-utils/scripts/xdg-settings', |
| 199 ], | 200 ], |
| 200 # The wrapper script above may need to generate a .desktop file, | 201 # The wrapper script above may need to generate a .desktop file, |
| 201 # which requires an icon. So, copy one next to the script. | 202 # which requires an icon. So, copy one next to the script. |
| 202 'conditions': [ | 203 'conditions': [ |
| 203 ['branding=="Chrome"', { | 204 ['branding=="Chrome"', { |
| 204 'files': ['app/theme/google_chrome/product_logo_48.png'] | 205 'files': ['app/theme/google_chrome/product_logo_48.png'] |
| 205 }, { # else: 'branding!="Chrome" | 206 }, { # else: 'branding!="Chrome" |
| 206 'files': ['app/theme/chromium/product_logo_48.png'] | 207 'files': ['app/theme/chromium/product_logo_48.png'] |
| 207 }], | 208 }], |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 'configurations': { | 507 'configurations': { |
| 507 'Common_Base': { | 508 'Common_Base': { |
| 508 'msvs_target_platform': 'x64', | 509 'msvs_target_platform': 'x64', |
| 509 }, | 510 }, |
| 510 }, | 511 }, |
| 511 }, | 512 }, |
| 512 ], | 513 ], |
| 513 }], | 514 }], |
| 514 ], | 515 ], |
| 515 } | 516 } |
| OLD | NEW |