Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: chrome/chrome_exe.gypi

Issue 7714028: Switch to using .pak files for locale data on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more deps Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 ], 175 ],
176 }], 176 }],
177 ], 177 ],
178 'dependencies': [ 178 'dependencies': [
179 # On Linux, link the dependencies (libraries) that make up actual 179 # On Linux, link the dependencies (libraries) that make up actual
180 # Chromium functionality directly into the executable. 180 # Chromium functionality directly into the executable.
181 '<@(chromium_dependencies)', 181 '<@(chromium_dependencies)',
182 # Needed for chrome_main.cc initialization of libraries. 182 # Needed for chrome_main.cc initialization of libraries.
183 '../build/linux/system.gyp:dbus-glib', 183 '../build/linux/system.gyp:dbus-glib',
184 '../build/linux/system.gyp:gtk', 184 '../build/linux/system.gyp:gtk',
185 'packed_resources',
186 # Needed to use the master_preferences functions 185 # Needed to use the master_preferences functions
187 'installer_util', 186 'installer_util',
188 ], 187 ],
189 'sources': [ 188 'sources': [
190 'app/chrome_dll_resource.h', 189 'app/chrome_dll_resource.h',
191 'app/chrome_main.cc', 190 'app/chrome_main.cc',
192 'app/chrome_main_posix.cc', 191 'app/chrome_main_posix.cc',
193 ], 192 ],
194 }], 193 }],
195 ['OS=="mac"', { 194 ['OS=="mac"', {
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 393
395 # On Mac, this is done in chrome_dll.gypi. 394 # On Mac, this is done in chrome_dll.gypi.
396 ['internal_pdf', { 395 ['internal_pdf', {
397 'dependencies': [ 396 'dependencies': [
398 '../pdf/pdf.gyp:pdf', 397 '../pdf/pdf.gyp:pdf',
399 ], 398 ],
400 }], 399 }],
401 ], 400 ],
402 'dependencies': [ 401 'dependencies': [
403 'packed_extra_resources', 402 'packed_extra_resources',
403 'packed_resources',
404 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp 404 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
405 # file decide what to do on a per-OS basis; on Mac, internal plugins 405 # file decide what to do on a per-OS basis; on Mac, internal plugins
406 # go inside the framework, so this dependency is in chrome_dll.gypi. 406 # go inside the framework, so this dependency is in chrome_dll.gypi.
407 '../third_party/adobe/flash/flash_player.gyp:flash_player', 407 '../third_party/adobe/flash/flash_player.gyp:flash_player',
408 ], 408 ],
409 }], 409 }],
410 ['OS=="mac"', { 410 ['OS=="mac"', {
411 'dependencies': [ 411 'dependencies': [
412 # On Mac, make sure we've built chrome_dll, which contains all of 412 # On Mac, make sure we've built chrome_dll, which contains all of
413 # the library code with Chromium functionality. 413 # the library code with Chromium functionality.
(...skipping 16 matching lines...) Expand all
430 }], 430 }],
431 ['OS=="win"', { 431 ['OS=="win"', {
432 'dependencies': [ 432 'dependencies': [
433 'chrome_version_resources', 433 'chrome_version_resources',
434 'installer_util', 434 'installer_util',
435 'installer_util_strings', 435 'installer_util_strings',
436 '../base/base.gyp:base', 436 '../base/base.gyp:base',
437 '../breakpad/breakpad.gyp:breakpad_handler', 437 '../breakpad/breakpad.gyp:breakpad_handler',
438 '../breakpad/breakpad.gyp:breakpad_sender', 438 '../breakpad/breakpad.gyp:breakpad_sender',
439 '../sandbox/sandbox.gyp:sandbox', 439 '../sandbox/sandbox.gyp:sandbox',
440 'app/locales/locales.gyp:*',
441 'app/policy/cloud_policy_codegen.gyp:policy', 440 'app/policy/cloud_policy_codegen.gyp:policy',
442 ], 441 ],
443 'sources': [ 442 'sources': [
444 'app/chrome_exe.rc', 443 'app/chrome_exe.rc',
445 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', 444 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
446 ], 445 ],
447 'msvs_settings': { 446 'msvs_settings': {
448 'VCLinkerTool': { 447 'VCLinkerTool': {
449 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 448 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
450 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', 449 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'configurations': { 496 'configurations': {
498 'Common_Base': { 497 'Common_Base': {
499 'msvs_target_platform': 'x64', 498 'msvs_target_platform': 'x64',
500 }, 499 },
501 }, 500 },
502 }, 501 },
503 ], 502 ],
504 }], 503 }],
505 ], 504 ],
506 } 505 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698