| 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 ], | 469 ], |
| 470 # Disable c4267 warnings until we fix size_t to int truncations. | 470 # Disable c4267 warnings until we fix size_t to int truncations. |
| 471 'msvs_disabled_warnings': [ 4267, ], | 471 'msvs_disabled_warnings': [ 4267, ], |
| 472 }, | 472 }, |
| 473 { | 473 { |
| 474 'target_name': 'extensions_renderer', | 474 'target_name': 'extensions_renderer', |
| 475 'type': 'static_library', | 475 'type': 'static_library', |
| 476 'dependencies': [ | 476 'dependencies': [ |
| 477 'extensions_resources.gyp:extensions_resources', | 477 'extensions_resources.gyp:extensions_resources', |
| 478 '../chrome/chrome_resources.gyp:chrome_resources', | 478 '../chrome/chrome_resources.gyp:chrome_resources', |
| 479 '../gin/gin.gyp:gin', |
| 479 '../third_party/WebKit/public/blink.gyp:blink', | 480 '../third_party/WebKit/public/blink.gyp:blink', |
| 480 ], | 481 ], |
| 481 'include_dirs': [ | 482 'include_dirs': [ |
| 482 '..', | 483 '..', |
| 483 ], | 484 ], |
| 484 'sources': [ | 485 'sources': [ |
| 485 'renderer/activity_log_converter_strategy.cc', | 486 'renderer/activity_log_converter_strategy.cc', |
| 486 'renderer/activity_log_converter_strategy.h', | 487 'renderer/activity_log_converter_strategy.h', |
| 487 'renderer/api_activity_logger.cc', | 488 'renderer/api_activity_logger.cc', |
| 488 'renderer/api_activity_logger.h', | 489 'renderer/api_activity_logger.h', |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 'test/test_extensions_client.cc', | 692 'test/test_extensions_client.cc', |
| 692 'test/test_extensions_client.h', | 693 'test/test_extensions_client.h', |
| 693 'test/test_permission_message_provider.cc', | 694 'test/test_permission_message_provider.cc', |
| 694 'test/test_permission_message_provider.h', | 695 'test/test_permission_message_provider.h', |
| 695 'test/test_permissions_provider.cc', | 696 'test/test_permissions_provider.cc', |
| 696 'test/test_permissions_provider.h', | 697 'test/test_permissions_provider.h', |
| 697 ], | 698 ], |
| 698 }, | 699 }, |
| 699 ] | 700 ] |
| 700 } | 701 } |
| OLD | NEW |