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