| 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 'target_defaults': { | 9 'target_defaults': { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 '../ppapi/native_client/native_client.gyp:nacl_irt', | 83 '../ppapi/native_client/native_client.gyp:nacl_irt', |
| 84 '../ppapi/native_client/src/untrusted/pnacl_support_extension/pn
acl_support_extension.gyp:pnacl_support_extension', | 84 '../ppapi/native_client/src/untrusted/pnacl_support_extension/pn
acl_support_extension.gyp:pnacl_support_extension', |
| 85 ], | 85 ], |
| 86 }], | 86 }], |
| 87 ], | 87 ], |
| 88 }, | 88 }, |
| 89 { | 89 { |
| 90 'target_name': 'nacl_browser', | 90 'target_name': 'nacl_browser', |
| 91 'type': 'static_library', | 91 'type': 'static_library', |
| 92 'sources': [ | 92 'sources': [ |
| 93 'nacl/browser/bad_message.cc', |
| 94 'nacl/browser/bad_message.h', |
| 93 'nacl/browser/nacl_broker_host_win.cc', | 95 'nacl/browser/nacl_broker_host_win.cc', |
| 94 'nacl/browser/nacl_broker_host_win.h', | 96 'nacl/browser/nacl_broker_host_win.h', |
| 95 'nacl/browser/nacl_broker_service_win.cc', | 97 'nacl/browser/nacl_broker_service_win.cc', |
| 96 'nacl/browser/nacl_broker_service_win.h', | 98 'nacl/browser/nacl_broker_service_win.h', |
| 97 'nacl/browser/nacl_browser.cc', | 99 'nacl/browser/nacl_browser.cc', |
| 98 'nacl/browser/nacl_browser.h', | 100 'nacl/browser/nacl_browser.h', |
| 99 'nacl/browser/nacl_file_host.cc', | 101 'nacl/browser/nacl_file_host.cc', |
| 100 'nacl/browser/nacl_file_host.h', | 102 'nacl/browser/nacl_file_host.h', |
| 101 'nacl/browser/nacl_host_message_filter.cc', | 103 'nacl/browser/nacl_host_message_filter.cc', |
| 102 'nacl/browser/nacl_host_message_filter.h', | 104 'nacl/browser/nacl_host_message_filter.h', |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 ], | 491 ], |
| 490 'include_dirs': [ | 492 'include_dirs': [ |
| 491 '..', | 493 '..', |
| 492 ], | 494 ], |
| 493 'dependencies': [ | 495 'dependencies': [ |
| 494 '../content/content.gyp:content_common', | 496 '../content/content.gyp:content_common', |
| 495 ], | 497 ], |
| 496 }, | 498 }, |
| 497 ] | 499 ] |
| 498 } | 500 } |
| OLD | NEW |