| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 '<@(chromium_dependencies)', | 184 '<@(chromium_dependencies)', |
| 185 # Needed for chrome_main.cc initialization of libraries. | 185 # Needed for chrome_main.cc initialization of libraries. |
| 186 '../build/linux/system.gyp:dbus-glib', | 186 '../build/linux/system.gyp:dbus-glib', |
| 187 '../build/linux/system.gyp:gtk', | 187 '../build/linux/system.gyp:gtk', |
| 188 # Needed to use the master_preferences functions | 188 # Needed to use the master_preferences functions |
| 189 'installer_util', | 189 'installer_util', |
| 190 ], | 190 ], |
| 191 'sources': [ | 191 'sources': [ |
| 192 'app/chrome_dll_resource.h', | 192 'app/chrome_dll_resource.h', |
| 193 'app/chrome_main.cc', | 193 'app/chrome_main.cc', |
| 194 'app/chrome_main_posix.cc', | |
| 195 ], | 194 ], |
| 196 }], | 195 }], |
| 197 ['OS=="mac"', { | 196 ['OS=="mac"', { |
| 198 # 'branding' is a variable defined in common.gypi | 197 # 'branding' is a variable defined in common.gypi |
| 199 # (e.g. "Chromium", "Chrome") | 198 # (e.g. "Chromium", "Chrome") |
| 200 'conditions': [ | 199 'conditions': [ |
| 201 ['branding=="Chrome"', { | 200 ['branding=="Chrome"', { |
| 202 'mac_bundle_resources': [ | 201 'mac_bundle_resources': [ |
| 203 'app/theme/google_chrome/app.icns', | 202 'app/theme/google_chrome/app.icns', |
| 204 'app/theme/google_chrome/document.icns', | 203 'app/theme/google_chrome/document.icns', |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 'configurations': { | 541 'configurations': { |
| 543 'Common_Base': { | 542 'Common_Base': { |
| 544 'msvs_target_platform': 'x64', | 543 'msvs_target_platform': 'x64', |
| 545 }, | 544 }, |
| 546 }, | 545 }, |
| 547 }, | 546 }, |
| 548 ], | 547 ], |
| 549 }], | 548 }], |
| 550 ], | 549 ], |
| 551 } | 550 } |
| OLD | NEW |