OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 'browser/web_data_service_factory.h', | 373 'browser/web_data_service_factory.h', |
374 'browser/web_resource/ios_web_resource_service.cc', | 374 'browser/web_resource/ios_web_resource_service.cc', |
375 'browser/web_resource/ios_web_resource_service.h', | 375 'browser/web_resource/ios_web_resource_service.h', |
376 'browser/xcallback_parameters.h', | 376 'browser/xcallback_parameters.h', |
377 'browser/xcallback_parameters.mm', | 377 'browser/xcallback_parameters.mm', |
378 ], | 378 ], |
379 'conditions': [ | 379 'conditions': [ |
380 ['enable_rlz==1', { | 380 ['enable_rlz==1', { |
381 'dependencies': [ | 381 'dependencies': [ |
382 '../../components/components.gyp:rlz', | 382 '../../components/components.gyp:rlz', |
383 'ios_chrome_browser_rlz', | |
384 ], | 383 ], |
385 }], | 384 }], |
386 ], | 385 ], |
387 }, | 386 }, |
388 { | 387 { |
389 'target_name': 'ios_chrome_common', | 388 'target_name': 'ios_chrome_common', |
390 'type': 'static_library', | 389 'type': 'static_library', |
391 'include_dirs': [ | 390 'include_dirs': [ |
392 '../..', | 391 '../..', |
393 ], | 392 ], |
(...skipping 22 matching lines...) Expand all Loading... |
416 '../../ios/web/js_compile.gypi', | 415 '../../ios/web/js_compile.gypi', |
417 ], | 416 ], |
418 'link_settings': { | 417 'link_settings': { |
419 'mac_bundle_resources': [ | 418 'mac_bundle_resources': [ |
420 '<(SHARED_INTERMEDIATE_DIR)/bookmark_image_service_ios.js', | 419 '<(SHARED_INTERMEDIATE_DIR)/bookmark_image_service_ios.js', |
421 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', | 420 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', |
422 ], | 421 ], |
423 }, | 422 }, |
424 }, | 423 }, |
425 ], | 424 ], |
426 'conditions': [ | |
427 ['enable_rlz_support==1', { | |
428 'targets': [ | |
429 { | |
430 'target_name': 'ios_chrome_browser_rlz', | |
431 'type': 'static_library', | |
432 'sources': [ | |
433 'browser/rlz/rlz_tracker_delegate_impl.cc', | |
434 'browser/rlz/rlz_tracker_delegate_impl.h', | |
435 ], | |
436 'dependencies': [ | |
437 '../../components/components.gyp:google_core_browser', | |
438 '../../components/components.gyp:omnibox_browser', | |
439 '../../components/components.gyp:rlz', | |
440 '../../components/components.gyp:search_engines', | |
441 '../../rlz/rlz.gyp:rlz_lib', | |
442 ], | |
443 }, | |
444 ], | |
445 }], | |
446 ], | |
447 } | 425 } |
OLD | NEW |