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 'includes': [ | 9 'includes': [ |
10 'nacl/nacl_defines.gypi', | 10 'nacl/nacl_defines.gypi', |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 }, | 399 }, |
400 { | 400 { |
401 'target_name': 'nacl_common_win64', | 401 'target_name': 'nacl_common_win64', |
402 'type': 'static_library', | 402 'type': 'static_library', |
403 'defines': [ | 403 'defines': [ |
404 'COMPILE_CONTENT_STATICALLY', | 404 'COMPILE_CONTENT_STATICALLY', |
405 ], | 405 ], |
406 'sources': [ | 406 'sources': [ |
407 'nacl/common/nacl_cmd_line.cc', | 407 'nacl/common/nacl_cmd_line.cc', |
408 'nacl/common/nacl_cmd_line.h', | 408 'nacl/common/nacl_cmd_line.h', |
| 409 'nacl/common/nacl_constants.cc', |
| 410 'nacl/common/nacl_constants.h', |
409 'nacl/common/nacl_messages.cc', | 411 'nacl/common/nacl_messages.cc', |
410 'nacl/common/nacl_messages.h', | 412 'nacl/common/nacl_messages.h', |
411 'nacl/common/nacl_types.cc', | 413 'nacl/common/nacl_types.cc', |
412 'nacl/common/nacl_types.h', | 414 'nacl/common/nacl_types.h', |
413 ], | 415 ], |
414 'include_dirs': [ | 416 'include_dirs': [ |
415 '..', | 417 '..', |
416 ], | 418 ], |
417 'configurations': { | 419 'configurations': { |
418 'Common_Base': { | 420 'Common_Base': { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 'include_dirs': [ | 480 'include_dirs': [ |
479 '..', | 481 '..', |
480 ], | 482 ], |
481 }, | 483 }, |
482 { | 484 { |
483 'target_name': 'nacl_common', | 485 'target_name': 'nacl_common', |
484 'type': 'static_library', | 486 'type': 'static_library', |
485 'sources': [ | 487 'sources': [ |
486 'nacl/common/nacl_cmd_line.cc', | 488 'nacl/common/nacl_cmd_line.cc', |
487 'nacl/common/nacl_cmd_line.h', | 489 'nacl/common/nacl_cmd_line.h', |
| 490 'nacl/common/nacl_constants.cc', |
| 491 'nacl/common/nacl_constants.h', |
488 'nacl/common/nacl_host_messages.h', | 492 'nacl/common/nacl_host_messages.h', |
489 'nacl/common/nacl_host_messages.cc', | 493 'nacl/common/nacl_host_messages.cc', |
490 'nacl/common/nacl_messages.cc', | 494 'nacl/common/nacl_messages.cc', |
491 'nacl/common/nacl_messages.h', | 495 'nacl/common/nacl_messages.h', |
492 'nacl/common/nacl_nonsfi_util.cc', | 496 'nacl/common/nacl_nonsfi_util.cc', |
493 'nacl/common/nacl_nonsfi_util.h', | 497 'nacl/common/nacl_nonsfi_util.h', |
494 'nacl/common/nacl_process_type.h', | 498 'nacl/common/nacl_process_type.h', |
495 'nacl/common/nacl_sandbox_type_mac.h', | 499 'nacl/common/nacl_sandbox_type_mac.h', |
496 'nacl/common/nacl_types.cc', | 500 'nacl/common/nacl_types.cc', |
497 'nacl/common/nacl_types.h', | 501 'nacl/common/nacl_types.h', |
498 'nacl/common/pnacl_types.cc', | 502 'nacl/common/pnacl_types.cc', |
499 'nacl/common/pnacl_types.h', | 503 'nacl/common/pnacl_types.h', |
500 ], | 504 ], |
501 'include_dirs': [ | 505 'include_dirs': [ |
502 '..', | 506 '..', |
503 ], | 507 ], |
504 'dependencies': [ | 508 'dependencies': [ |
505 '../content/content.gyp:content_common', | 509 '../content/content.gyp:content_common', |
506 ], | 510 ], |
507 }, | 511 }, |
508 ] | 512 ] |
509 } | 513 } |
OLD | NEW |