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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 # Disable c4267 warnings until we fix size_t to int truncations. | 404 # Disable c4267 warnings until we fix size_t to int truncations. |
405 'msvs_disabled_warnings': [ 4267, ], | 405 'msvs_disabled_warnings': [ 4267, ], |
406 }, | 406 }, |
407 { | 407 { |
408 'target_name': 'extensions_renderer', | 408 'target_name': 'extensions_renderer', |
409 'type': 'static_library', | 409 'type': 'static_library', |
410 'include_dirs': [ | 410 'include_dirs': [ |
411 '..', | 411 '..', |
412 ], | 412 ], |
413 'sources': [ | 413 'sources': [ |
| 414 'renderer/console.cc', |
| 415 'renderer/console.h', |
| 416 'renderer/module_system.cc', |
| 417 'renderer/module_system.h', |
414 'renderer/native_handler.cc', | 418 'renderer/native_handler.cc', |
415 'renderer/native_handler.h', | 419 'renderer/native_handler.h', |
| 420 'renderer/object_backed_native_handler.cc', |
| 421 'renderer/object_backed_native_handler.h', |
| 422 'renderer/request_sender.cc', |
| 423 'renderer/request_sender.h', |
| 424 'renderer/safe_builtins.cc', |
| 425 'renderer/safe_builtins.h', |
416 'renderer/scoped_persistent.h', | 426 'renderer/scoped_persistent.h', |
| 427 'renderer/script_context.cc', |
| 428 'renderer/script_context.h', |
417 ], | 429 ], |
418 'dependencies': [ | 430 'dependencies': [ |
419 '../third_party/WebKit/public/blink.gyp:blink', | 431 '../third_party/WebKit/public/blink.gyp:blink', |
420 ], | 432 ], |
421 # Disable c4267 warnings until we fix size_t to int truncations. | 433 # Disable c4267 warnings until we fix size_t to int truncations. |
422 'msvs_disabled_warnings': [ 4267, ], | 434 'msvs_disabled_warnings': [ 4267, ], |
423 }, | 435 }, |
424 { | 436 { |
425 'target_name': 'extensions_test_support', | 437 'target_name': 'extensions_test_support', |
426 'type': 'static_library', | 438 'type': 'static_library', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 'common/permissions/api_permission_set_unittest.cc', | 488 'common/permissions/api_permission_set_unittest.cc', |
477 'common/permissions/manifest_permission_set_unittest.cc', | 489 'common/permissions/manifest_permission_set_unittest.cc', |
478 'common/url_pattern_set_unittest.cc', | 490 'common/url_pattern_set_unittest.cc', |
479 'common/url_pattern_unittest.cc', | 491 'common/url_pattern_unittest.cc', |
480 'common/user_script_unittest.cc', | 492 'common/user_script_unittest.cc', |
481 'test/extensions_unittests_main.cc', | 493 'test/extensions_unittests_main.cc', |
482 ], | 494 ], |
483 }, | 495 }, |
484 ] | 496 ] |
485 } | 497 } |
OLD | NEW |