| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 'variables': { | 8 'variables': { |
| 9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 '..', | 299 '..', |
| 300 ], | 300 ], |
| 301 'defines' : [ | 301 'defines' : [ |
| 302 '_CRT_SECURE_NO_WARNINGS', | 302 '_CRT_SECURE_NO_WARNINGS', |
| 303 '_USE_32BIT_TIME_T', | 303 '_USE_32BIT_TIME_T', |
| 304 ], | 304 ], |
| 305 'dependencies': [ | 305 'dependencies': [ |
| 306 '../base/base.gyp:base', | 306 '../base/base.gyp:base', |
| 307 '../net/net.gyp:net', | 307 '../net/net.gyp:net', |
| 308 '../third_party/sqlite/sqlite.gyp:sqlite', | 308 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 309 'browser/sync/protocol/sync_proto.gyp:sync_proto', | 309 '../sync/protocol/sync_proto.gyp:sync_proto', |
| 310 'sync', | 310 'sync', |
| 311 'sync_notifier', | 311 'sync_notifier', |
| 312 ], | 312 ], |
| 313 'export_dependent_settings': [ | 313 'export_dependent_settings': [ |
| 314 'browser/sync/protocol/sync_proto.gyp:sync_proto', | 314 '../sync/protocol/sync_proto.gyp:sync_proto', |
| 315 'sync', | 315 'sync', |
| 316 ], | 316 ], |
| 317 # This target exports a hard dependency because syncapi.h includes | 317 # This target exports a hard dependency because syncapi.h includes |
| 318 # generated proto header files from sync_proto. | 318 # generated proto header files from sync_proto. |
| 319 'hard_dependency': 1, | 319 'hard_dependency': 1, |
| 320 }, | 320 }, |
| 321 { | 321 { |
| 322 # Provides the API that Chrome services use to talk to sync. | 322 # Provides the API that Chrome services use to talk to sync. |
| 323 'target_name': 'syncapi_service', | 323 'target_name': 'syncapi_service', |
| 324 'type': 'static_library', | 324 'type': 'static_library', |
| 325 'variables': { 'enable_wexit_time_destructors': 1, }, | 325 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 326 'sources': [ | 326 'sources': [ |
| 327 'browser/sync/api/syncable_service.cc', | 327 'browser/sync/api/syncable_service.cc', |
| 328 'browser/sync/api/syncable_service.h', | 328 'browser/sync/api/syncable_service.h', |
| 329 'browser/sync/api/sync_data.h', | 329 'browser/sync/api/sync_data.h', |
| 330 'browser/sync/api/sync_data.cc', | 330 'browser/sync/api/sync_data.cc', |
| 331 'browser/sync/api/sync_change.h', | 331 'browser/sync/api/sync_change.h', |
| 332 'browser/sync/api/sync_change.cc', | 332 'browser/sync/api/sync_change.cc', |
| 333 'browser/sync/api/sync_change_processor.h', | 333 'browser/sync/api/sync_change_processor.h', |
| 334 'browser/sync/api/sync_change_processor.cc', | 334 'browser/sync/api/sync_change_processor.cc', |
| 335 'browser/sync/api/sync_error.h', | 335 'browser/sync/api/sync_error.h', |
| 336 'browser/sync/api/sync_error.cc', | 336 'browser/sync/api/sync_error.cc', |
| 337 ], | 337 ], |
| 338 'include_dirs': [ | 338 'include_dirs': [ |
| 339 '..', | 339 '..', |
| 340 ], | 340 ], |
| 341 'dependencies': [ | 341 'dependencies': [ |
| 342 '../base/base.gyp:base', | 342 '../base/base.gyp:base', |
| 343 'browser/sync/protocol/sync_proto.gyp:sync_proto', | 343 '../sync/protocol/sync_proto.gyp:sync_proto', |
| 344 'sync', | 344 'sync', |
| 345 ], | 345 ], |
| 346 'export_dependent_settings': [ | 346 'export_dependent_settings': [ |
| 347 '../base/base.gyp:base', | 347 '../base/base.gyp:base', |
| 348 'browser/sync/protocol/sync_proto.gyp:sync_proto', | 348 '../sync/protocol/sync_proto.gyp:sync_proto', |
| 349 'sync', | 349 'sync', |
| 350 ], | 350 ], |
| 351 # Even though this target depends on sync_proto, it doesn't | 351 # Even though this target depends on sync_proto, it doesn't |
| 352 # need to export a hard dependency since we explicitly avoid | 352 # need to export a hard dependency since we explicitly avoid |
| 353 # including the generated proto header files from this target's | 353 # including the generated proto header files from this target's |
| 354 # header files. | 354 # header files. |
| 355 }, | 355 }, |
| 356 { | 356 { |
| 357 'target_name': 'sync', | 357 'target_name': 'sync', |
| 358 'type': 'static_library', | 358 'type': 'static_library', |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 'defines' : [ | 503 'defines' : [ |
| 504 'SYNC_ENGINE_VERSION_STRING="Unknown"', | 504 'SYNC_ENGINE_VERSION_STRING="Unknown"', |
| 505 '_CRT_SECURE_NO_WARNINGS', | 505 '_CRT_SECURE_NO_WARNINGS', |
| 506 '_USE_32BIT_TIME_T', | 506 '_USE_32BIT_TIME_T', |
| 507 ], | 507 ], |
| 508 'dependencies': [ | 508 'dependencies': [ |
| 509 '../base/base.gyp:base', | 509 '../base/base.gyp:base', |
| 510 '../crypto/crypto.gyp:crypto', | 510 '../crypto/crypto.gyp:crypto', |
| 511 '../net/net.gyp:net', | 511 '../net/net.gyp:net', |
| 512 '../sql/sql.gyp:sql', | 512 '../sql/sql.gyp:sql', |
| 513 'browser/sync/protocol/sync_proto.gyp:sync_proto', | 513 '../sync/protocol/sync_proto.gyp:sync_proto', |
| 514 ], | 514 ], |
| 515 'export_dependent_settings': [ | 515 'export_dependent_settings': [ |
| 516 '../base/base.gyp:base', | 516 '../base/base.gyp:base', |
| 517 '../crypto/crypto.gyp:crypto', | 517 '../crypto/crypto.gyp:crypto', |
| 518 'browser/sync/protocol/sync_proto.gyp:sync_proto', | 518 '../sync/protocol/sync_proto.gyp:sync_proto', |
| 519 ], | 519 ], |
| 520 # This target exports a hard dependency because its header files include | 520 # This target exports a hard dependency because its header files include |
| 521 # protobuf header files from sync_proto. | 521 # protobuf header files from sync_proto. |
| 522 'hard_dependency': 1, | 522 'hard_dependency': 1, |
| 523 'conditions': [ | 523 'conditions': [ |
| 524 ['OS=="win"', { | 524 ['OS=="win"', { |
| 525 'sources' : [ | 525 'sources' : [ |
| 526 'browser/sync/util/data_encryption.cc', | 526 'browser/sync/util/data_encryption.cc', |
| 527 'browser/sync/util/data_encryption.h', | 527 'browser/sync/util/data_encryption.h', |
| 528 ], | 528 ], |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1353 'sources': [ | 1353 'sources': [ |
| 1354 'browser/safe_browsing/signature_util.h', | 1354 'browser/safe_browsing/signature_util.h', |
| 1355 'browser/safe_browsing/signature_util_win.cc', | 1355 'browser/safe_browsing/signature_util_win.cc', |
| 1356 'tools/safe_browsing/sb_sigutil.cc', | 1356 'tools/safe_browsing/sb_sigutil.cc', |
| 1357 ], | 1357 ], |
| 1358 }, | 1358 }, |
| 1359 ]}, # 'targets' | 1359 ]}, # 'targets' |
| 1360 ], # OS=="win" | 1360 ], # OS=="win" |
| 1361 ], # 'conditions' | 1361 ], # 'conditions' |
| 1362 } | 1362 } |
| OLD | NEW |