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 '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 Loading... |
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 } |
OLD | NEW |