OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 'plugin/plugin_thread.h', | 612 'plugin/plugin_thread.h', |
613 'plugin/webplugin_delegate_stub.cc', | 613 'plugin/webplugin_delegate_stub.cc', |
614 'plugin/webplugin_delegate_stub.h', | 614 'plugin/webplugin_delegate_stub.h', |
615 'plugin/webplugin_proxy.cc', | 615 'plugin/webplugin_proxy.cc', |
616 'plugin/webplugin_proxy.h', | 616 'plugin/webplugin_proxy.h', |
617 ], | 617 ], |
618 # These are layered in conditionals in the event other platforms | 618 # These are layered in conditionals in the event other platforms |
619 # end up using this module as well. | 619 # end up using this module as well. |
620 'conditions': [ | 620 'conditions': [ |
621 ['OS=="win"', { | 621 ['OS=="win"', { |
622 'defines': [ | |
623 '__STD_C', | |
624 '_CRT_SECURE_NO_DEPRECATE', | |
625 '_SCL_SECURE_NO_DEPRECATE', | |
626 ], | |
627 'include_dirs': [ | 622 'include_dirs': [ |
628 '<(DEPTH)/third_party/wtl/include', | 623 '<(DEPTH)/third_party/wtl/include', |
629 ], | 624 ], |
630 }], | 625 }], |
631 ['enable_gpu==1', { | 626 ['enable_gpu==1', { |
632 'dependencies': [ | 627 'dependencies': [ |
633 '../gpu/gpu.gyp:command_buffer_service', | 628 '../gpu/gpu.gyp:command_buffer_service', |
634 ], | 629 ], |
635 'sources': [ | 630 'sources': [ |
636 'plugin/command_buffer_stub.cc', | 631 'plugin/command_buffer_stub.cc', |
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1950 }], # targets | 1945 }], # targets |
1951 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1946 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1952 ], # 'conditions' | 1947 ], # 'conditions' |
1953 } | 1948 } |
1954 | 1949 |
1955 # Local Variables: | 1950 # Local Variables: |
1956 # tab-width:2 | 1951 # tab-width:2 |
1957 # indent-tabs-mode:nil | 1952 # indent-tabs-mode:nil |
1958 # End: | 1953 # End: |
1959 # vim: set expandtab tabstop=2 shiftwidth=2: | 1954 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |