| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../../../../build/common.gypi', | 10 '../../../../build/common.gypi', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'content_script_native_api.cc', | 32 'content_script_native_api.cc', |
| 33 'content_script_native_api.h', | 33 'content_script_native_api.h', |
| 34 '../../common/precompile.cc', | 34 '../../common/precompile.cc', |
| 35 '../../common/precompile.h', | 35 '../../common/precompile.h', |
| 36 'script_host.cc', | 36 'script_host.cc', |
| 37 'script_host.h', | 37 'script_host.h', |
| 38 'userscripts_librarian.cc', | 38 'userscripts_librarian.cc', |
| 39 'userscripts_librarian.h', | 39 'userscripts_librarian.h', |
| 40 'userscripts_docs.h', | 40 'userscripts_docs.h', |
| 41 ], | 41 ], |
| 42 'configurations': { | |
| 43 'Debug': { | |
| 44 'msvs_precompiled_source': '../../common/precompile.cc', | |
| 45 'msvs_precompiled_header': '../../common/precompile.h', | |
| 46 }, | |
| 47 }, | |
| 48 }, | 42 }, |
| 49 { | 43 { |
| 50 'target_name': 'javascript_bindings', | 44 'target_name': 'javascript_bindings', |
| 51 'type': 'none', | 45 'type': 'none', |
| 52 'variables': { | 46 'variables': { |
| 53 'chrome_renderer_path' : '../../../../chrome/renderer', | 47 'chrome_renderer_path' : '../../../../chrome/renderer', |
| 54 'input_js_files': [ | 48 'input_js_files': [ |
| 55 '<(chrome_renderer_path)/resources/event_bindings.js', | 49 '<(chrome_renderer_path)/resources/event_bindings.js', |
| 56 '<(chrome_renderer_path)/resources/renderer_extension_bindings.js', | 50 '<(chrome_renderer_path)/resources/renderer_extension_bindings.js', |
| 57 ], | 51 ], |
| (...skipping 27 matching lines...) Expand all Loading... |
| 85 }, | 79 }, |
| 86 ], | 80 ], |
| 87 # Make sure our dependents can refer to the transformed | 81 # Make sure our dependents can refer to the transformed |
| 88 # files from their .rc file(s). | 82 # files from their .rc file(s). |
| 89 'direct_dependent_settings': { | 83 'direct_dependent_settings': { |
| 90 'resource_include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 84 'resource_include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 91 }, | 85 }, |
| 92 }, | 86 }, |
| 93 ] | 87 ] |
| 94 } | 88 } |
| OLD | NEW |