| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'bindings_modules_v8_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings
/modules/v8', | 7 'bindings_modules_v8_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings
/modules/v8', |
| 8 'bindings_modules_v8_generated_union_type_files': [ |
| 9 # FIXME: Uncomment following entries when we start using union types in mo
dules. |
| 10 #'<(bindings_modules_v8_output_dir)/UnionTypesModules.cpp', |
| 11 #'<(bindings_modules_v8_output_dir)/UnionTypesModules.h', |
| 12 ], |
| 8 | 13 |
| 9 'conditions': [ | 14 'conditions': [ |
| 10 ['OS=="win" and buildtype=="Official"', { | 15 ['OS=="win" and buildtype=="Official"', { |
| 11 # On Windows Official release builds, we try to preserve symbol | 16 # On Windows Official release builds, we try to preserve symbol |
| 12 # space. | 17 # space. |
| 13 'bindings_modules_v8_generated_aggregate_files': [ | 18 'bindings_modules_v8_generated_aggregate_files': [ |
| 14 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindings.cpp', | 19 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindings.cpp', |
| 15 ], | 20 ], |
| 16 }, { | 21 }, { |
| 17 'bindings_modules_v8_generated_aggregate_files': [ | 22 'bindings_modules_v8_generated_aggregate_files': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 35 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindings18.cpp', | 40 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindings18.cpp', |
| 36 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindings19.cpp', | 41 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindings19.cpp', |
| 37 ], | 42 ], |
| 38 }], | 43 }], |
| 39 ], | 44 ], |
| 40 'bindings_modules_v8_generated_partial_aggregate_files': [ | 45 'bindings_modules_v8_generated_partial_aggregate_files': [ |
| 41 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindingsPartial.cpp', | 46 '<(bindings_modules_v8_output_dir)/V8GeneratedModulesBindingsPartial.cpp', |
| 42 ], | 47 ], |
| 43 }, | 48 }, |
| 44 } | 49 } |
| OLD | NEW |