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

Side by Side Diff: ui/ui.gyp

Issue 7863024: Make the NaCl windows 64 bit binaries not depend on chrome targets. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: simplify chrome_exe.gypi Created 9 years, 3 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 | « ui/base/resource/resource_bundle_dummy.cc ('k') | webkit/glue/webkit_glue_dummy.cc » ('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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows.
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 'python', '-c', 525 'python', '-c',
526 'import os, shutil; ' \ 526 'import os, shutil; ' \
527 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 527 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
528 'os.chmod(\'<(ui_copy_dest)\', 0700)' 528 'os.chmod(\'<(ui_copy_dest)\', 0700)'
529 ] 529 ]
530 } 530 }
531 ], 531 ],
532 }, 532 },
533 ], 533 ],
534 }], 534 }],
535 ['OS=="win"', {
536 'targets': [
537 {
538 'target_name': 'ui_nacl_win64',
539 'type': '<(component)',
540 'dependencies': [
541 '../base/base.gyp:base_nacl_win64',
542 ],
543 'defines': [
544 'UI_IMPLEMENTATION',
545 '<@(nacl_win64_defines)',
546 ],
547 'sources': [
548 'base/resource/resource_bundle_dummy.cc',
549 'base/ui_base_paths.h',
550 'base/ui_base_paths.cc',
551 'base/ui_base_switches.h',
552 'base/ui_base_switches.cc',
553 ],
554 'include_dirs': [
555 '..',
556 ],
557 'configurations': {
558 'Common_Base': {
559 'msvs_target_platform': 'x64',
560 },
561 },
562 },
563 ],
564 }],
565 ], 535 ],
566 } 536 }
OLDNEW
« no previous file with comments | « ui/base/resource/resource_bundle_dummy.cc ('k') | webkit/glue/webkit_glue_dummy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698