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 { |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 'renderer/request_sender.h', | 454 'renderer/request_sender.h', |
455 'renderer/safe_builtins.cc', | 455 'renderer/safe_builtins.cc', |
456 'renderer/safe_builtins.h', | 456 'renderer/safe_builtins.h', |
457 'renderer/send_request_natives.cc', | 457 'renderer/send_request_natives.cc', |
458 'renderer/send_request_natives.h', | 458 'renderer/send_request_natives.h', |
459 'renderer/set_icon_natives.cc', | 459 'renderer/set_icon_natives.cc', |
460 'renderer/set_icon_natives.h', | 460 'renderer/set_icon_natives.h', |
461 'renderer/scoped_persistent.h', | 461 'renderer/scoped_persistent.h', |
462 'renderer/script_context.cc', | 462 'renderer/script_context.cc', |
463 'renderer/script_context.h', | 463 'renderer/script_context.h', |
| 464 'renderer/script_context_set.cc', |
| 465 'renderer/script_context_set.h', |
464 'renderer/utils_native_handler.cc', | 466 'renderer/utils_native_handler.cc', |
465 'renderer/utils_native_handler.h', | 467 'renderer/utils_native_handler.h', |
| 468 'renderer/v8_schema_registry.cc', |
| 469 'renderer/v8_schema_registry.h', |
466 ], | 470 ], |
467 'dependencies': [ | 471 'dependencies': [ |
468 '../third_party/WebKit/public/blink.gyp:blink', | 472 '../third_party/WebKit/public/blink.gyp:blink', |
469 ], | 473 ], |
470 # Disable c4267 warnings until we fix size_t to int truncations. | 474 # Disable c4267 warnings until we fix size_t to int truncations. |
471 'msvs_disabled_warnings': [ 4267, ], | 475 'msvs_disabled_warnings': [ 4267, ], |
472 'conditions': [ | 476 'conditions': [ |
473 # Temporary conditions for Android until it can stop building | 477 # Temporary conditions for Android until it can stop building |
474 # the extensions module altogether. These exemptions are taken | 478 # the extensions module altogether. These exemptions are taken |
475 # directly from chrome_renderer.gypi as sources are moved | 479 # directly from chrome_renderer.gypi as sources are moved |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 'test/test_extensions_client.cc', | 551 'test/test_extensions_client.cc', |
548 'test/test_extensions_client.h', | 552 'test/test_extensions_client.h', |
549 'test/test_permission_message_provider.cc', | 553 'test/test_permission_message_provider.cc', |
550 'test/test_permission_message_provider.h', | 554 'test/test_permission_message_provider.h', |
551 'test/test_permissions_provider.cc', | 555 'test/test_permissions_provider.cc', |
552 'test/test_permissions_provider.h', | 556 'test/test_permissions_provider.h', |
553 ], | 557 ], |
554 }, | 558 }, |
555 ] | 559 ] |
556 } | 560 } |
OLD | NEW |