Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'gin', | 11 'target_name': 'gin', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../v8/tools/gyp/v8.gyp:v8', | 15 '../v8/tools/gyp/v8.gyp:v8', |
| 16 ], | 16 ], |
| 17 'export_dependent_settings': [ | 17 'export_dependent_settings': [ |
| 18 '../base/base.gyp:base', | 18 '../base/base.gyp:base', |
| 19 '../v8/tools/gyp/v8.gyp:v8', | 19 '../v8/tools/gyp/v8.gyp:v8', |
| 20 ], | 20 ], |
| 21 'sources': [ | 21 'sources': [ |
| 22 'modules/file_module_provider.cc', | |
| 23 'modules/file_module_provider.h', | |
| 22 'modules/module_registry.cc', | 24 'modules/module_registry.cc', |
| 23 'modules/module_registry.h', | 25 'modules/module_registry.h', |
| 26 'modules/module_runner_delegate.cc', | |
| 27 'modules/module_runner_delegate.h', | |
| 24 'arguments.cc', | 28 'arguments.cc', |
| 25 'arguments.h', | 29 'arguments.h', |
| 26 'array_buffer.cc', | 30 'array_buffer.cc', |
| 27 'array_buffer.h', | 31 'array_buffer.h', |
| 32 'context_holder.cc', | |
| 33 'context_holder.h', | |
| 28 'converter.cc', | 34 'converter.cc', |
| 29 'converter.h', | 35 'converter.h', |
| 30 'context_holder.cc', | |
| 31 'context_holder.h', | |
| 32 'dictionary.cc', | 36 'dictionary.cc', |
| 33 'dictionary.h', | 37 'dictionary.h', |
| 34 'initialize.cc', | 38 'initialize.cc', |
| 35 'initialize.h', | 39 'initialize.h', |
| 36 'per_context_data.cc', | 40 'per_context_data.cc', |
| 37 'per_context_data.h', | 41 'per_context_data.h', |
| 38 'per_isolate_data.cc', | 42 'per_isolate_data.cc', |
| 39 'per_isolate_data.h', | 43 'per_isolate_data.h', |
| 40 'runner.cc', | 44 'runner.cc', |
| 41 'runner.h', | 45 'runner.h', |
| 46 'try_catch.cc', | |
| 47 'try_catch.h', | |
| 42 'wrapper_info.cc', | 48 'wrapper_info.cc', |
| 43 'wrapper_info.h', | 49 'wrapper_info.h', |
| 44 ], | 50 ], |
| 45 }, | 51 }, |
| 46 { | 52 { |
| 53 'target_name': 'gin_shell', | |
| 54 'type': 'executable', | |
| 55 'dependencies': [ | |
| 56 'gin', | |
| 57 ], | |
| 58 'sources': [ | |
| 59 'shell/gin_main.cc', | |
| 60 ], | |
|
jochen (gone - plz use gerrit)
2013/11/18 12:46:05
you could add
'msvs_settings': {
'VCLinkerTool'
| |
| 61 }, | |
| 62 { | |
| 47 'target_name': 'gin_test', | 63 'target_name': 'gin_test', |
| 48 'type': 'static_library', | 64 'type': 'static_library', |
| 49 'dependencies': [ | 65 'dependencies': [ |
| 50 '../testing/gtest.gyp:gtest', | 66 '../testing/gtest.gyp:gtest', |
| 51 'gin', | 67 'gin', |
| 52 ], | 68 ], |
| 53 'export_dependent_settings': [ | 69 'export_dependent_settings': [ |
| 54 '../testing/gtest.gyp:gtest', | 70 '../testing/gtest.gyp:gtest', |
| 55 'gin', | 71 'gin', |
| 56 ], | 72 ], |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 72 ], | 88 ], |
| 73 'sources': [ | 89 'sources': [ |
| 74 'converter_unittest.cc', | 90 'converter_unittest.cc', |
| 75 'test/run_all_unittests.cc', | 91 'test/run_all_unittests.cc', |
| 76 'test/run_js_tests.cc', | 92 'test/run_js_tests.cc', |
| 77 'runner_unittest.cc', | 93 'runner_unittest.cc', |
| 78 ], | 94 ], |
| 79 }, | 95 }, |
| 80 ], | 96 ], |
| 81 } | 97 } |
| OLD | NEW |