OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'target_defaults': { | 8 'target_defaults': { |
9 'conditions': [ | 9 'conditions': [ |
10 ['use_aura==1', { | 10 ['use_aura==1', { |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
792 ], | 792 ], |
793 'conditions': [ | 793 'conditions': [ |
794 ['OS=="win"', { | 794 ['OS=="win"', { |
795 'include_dirs': [ | 795 'include_dirs': [ |
796 '../third_party/wtl/include', | 796 '../third_party/wtl/include', |
797 ], | 797 ], |
798 }], | 798 }], |
799 ], | 799 ], |
800 }, # target_name: views_examples_lib | 800 }, # target_name: views_examples_lib |
801 { | 801 { |
| 802 'target_name': 'views_examples_exe', |
| 803 'type': 'executable', |
| 804 'sources': [ |
| 805 'examples/examples_main.cc', |
| 806 ], |
| 807 }, # target_name: views_examples_exe |
| 808 { |
802 'target_name': 'views_examples_with_content_lib', | 809 'target_name': 'views_examples_with_content_lib', |
803 'type': '<(component)', | 810 'type': '<(component)', |
804 'dependencies': [ | 811 'dependencies': [ |
805 '../../base/base.gyp:base', | 812 '../../base/base.gyp:base', |
806 '../../base/base.gyp:base_i18n', | 813 '../../base/base.gyp:base_i18n', |
807 '../../build/temp_gyp/googleurl.gyp:googleurl', | 814 '../../build/temp_gyp/googleurl.gyp:googleurl', |
808 '../../chrome/chrome_resources.gyp:packed_resources', | 815 '../../chrome/chrome_resources.gyp:packed_resources', |
809 '../../content/content.gyp:content', | 816 '../../content/content.gyp:content', |
810 '../../skia/skia.gyp:skia', | 817 '../../skia/skia.gyp:skia', |
811 '../../third_party/icu/icu.gyp:icui18n', | 818 '../../third_party/icu/icu.gyp:icui18n', |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
946 'sources/': [ | 953 'sources/': [ |
947 # This is needed because the aura rule strips it from the default | 954 # This is needed because the aura rule strips it from the default |
948 # sources list. | 955 # sources list. |
949 ['include', '^../../content/app/startup_helper_win.cc'], | 956 ['include', '^../../content/app/startup_helper_win.cc'], |
950 ], | 957 ], |
951 }], | 958 }], |
952 ], | 959 ], |
953 }, # target_name: views_examples_with_content_exe | 960 }, # target_name: views_examples_with_content_exe |
954 ], | 961 ], |
955 } | 962 } |
OLD | NEW |